-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathservices.html
72 lines (66 loc) · 2.88 KB
/
services.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
<!DOCTYPE html>
<html lang="en-US">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width" />
<link rel="stylesheet" href="assets/css/styles.css" />
<link rel="stylesheet" href="assets/fonts/all.min.css" />
<link rel="icon" href="./assets/images/favicon.ico" type="image" />
<script src="assets/js/lib/require.js" defer></script>
<script src="assets/js/main.js" defer></script>
<script src="assets/js/services.js" defer></script>
<title>Services - Perspective Media</title>
</head>
<body id="body-container">
<div id="container">
<!-- start of header section -->
<header class="header site-header">
<a class="main-icon" href="index.html"><img src="assets/images/logo.png" class="nav logo"
alt="perspective media logo" /></a>
<nav class="nav top-nav">
<ul class="nav site-nav">
<li><a href="index.html">Home</a></li>
<li><a href="about.html">About</a></li>
<li><a href="blog.html">Blog</a></li>
<li><a href="services.html">Services</a></li>
<li id="register-button"><a href="registration.html">Register</a></li>
<li><span id="login-btn" class="login">Login</span></li>
</ul>
</nav>
</header>
<!-- end of header section -->
<!-- start of main section -->
<main class="main-section">
<!-- start of hero section -->
<div class="hero hero-section">
<div class="overlay-text">
<p class="hero-text">
Its how you see it.
</p>
<button type="button" id="open-contact-modal-btn" class="contact">Contact</button>
</div>
<img src="./assets/images/perspective.jpg" alt="group of people" class="hero hero-img">
</div>
<!-- end of hero section -->
<!-- start of article section -->
<div id="services" class="services-section">
<article id="brand" class="brand-article">
<h3 class="service-title">Brand</h3>
<p class="service-desc">
We develope brand personas that empathize with your
client,
embodies their needs,
and connects them with your brand.
</p>
</article>
</div>
<!-- end of article section -->
</main>
<!-- end of main section -->
<!-- Start of Footer Injection Point -->
<div id="site-footer" class="footer-items">
</div>
<!-- End of Footer Injection Point -->
</div>
</body>
</html>