-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
43 lines (37 loc) · 1.77 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0"> <!-- displays site properly based on user's device -->
<link rel="icon" type="image/png" sizes="32x32" href="./images/favicon-32x32.png">
<title>Frontend Mentor | Intro section with dropdown navigation</title>
<link rel="stylesheet" type="text/css" href="index.css">
<style>
.attribution { font-size: 11px; text-align: center; }
.attribution a { color: hsl(228, 45%, 44%); }
</style>
</head>
<body>
<nav class="zone sticky">
<ul class="main-nav">
<li>Snap</li>
<li class=""><a href="">features</a></li><br>
<li><a href="">Company</a></li>
<li><a href="">Careers</a></li>
<li><a href="">About</a></li> fff
<li class="push"><a href="">Login</a></li>
<li class="push bold"><a href="">Register</a></li>
</ul>
</nav>
<div class="main-content">
<div class="text">
<h3 class="main-text"> Make <br> remote work</h3>
<p class="sub-text"> Get your team in sync, no matter your location. <br> Streamline processes,
create team rituals, and <br> watch productivity soar.</p>
<a href="" class="btn">Learn More</a>
Challenge by <a href="https://www.frontendmentor.io?ref=challenge" target="_blank" class="font">Frontend Mentor.</a>
Coded by <a href="#" class="font">ImmanuelOlivia.</a>
</div>
<div class="container"><img src="./images/image-hero-desktop.png" width="400px" height="500px"></div>
</body>
</html>