-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
64 lines (62 loc) · 2.05 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="css/style.css" />
<title>Creative Agency</title>
</head>
<body>
<header>
<div class="logo">Creative Agency</div>
<div class="toggle"></div>
<div class="navigation">
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="services.html">Services</a></li>
<li><a href="work.html">Work</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
<div class="social-bar">
<ul>
<li>
<a href="https://facebook.com">
<img src="images/facebook.png" target="_blank" alt="" />
</a>
</li>
<li>
<a href="https://twitter.com">
<img src="images/twitter.png" target="_blank" alt="" />
</a>
</li>
<li>
<a href="https://instagram.com">
<img src="images/instagram.png" target="_blank" alt="" />
</a>
</li>
</ul>
<a href="mailto:you@email.com" class="email-icon">
<img src="images/email.png" alt="" />
</a>
</div>
</div>
</header>
<section class="home">
<img src="images/homepage-image.jpeg" class="home-img" alt="" />
<div class="home-content">
<h1>
We help to achieve <br />
your goals.
</h1>
<p>
Lorem ipsum dolor sit amet consectetur adipisicing elit. Illo itaque
nam saepe vero voluptatem vel fuga a eaque earum alias ipsam
aspernatur culpa maxime laboriosam, impedit quae officiis consectetur
</p>
<a href="contact.html" class="btn">Get Started</a>
</div>
</section>
<script src="js/script.js"></script>
</body>
</html>