-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
103 lines (97 loc) · 3.68 KB
/
index.html
File metadata and controls
103 lines (97 loc) · 3.68 KB
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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
<!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" href="CSS/style.css">
<!-- <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.2.0/css/all.min.css"> -->
<!-- Feel free to remove these styles or customise in your own stylesheet 👍 -->
<style>
.attribution { font-size: 11px; text-align: center; }
.attribution a { color: hsl(228, 45%, 44%); }
</style>
</head>
<body>
<section class="section-Home">
<div class="container">
<!-- ===== navbar start ===== -->
<nav class="navbar">
<div class="logo">
<h1>snap</h1>
</div>
<div class="menu">
<div class="btn-close">
<img src="images/icon-close-menu.svg" alt="">
</div>
<ul class="team-ul">
<li class="list-team"><a href="#">Features <img class="btn-down" src="images/icon-arrow-down.svg" alt=""></a>
<ul class="list-1">
<li><a href="">
<img src="images/icon-todo.svg" alt="">
Todo List
</a></li>
<li><a href="">
<img src="images/icon-calendar.svg" alt="">
Calendar
</a></li>
<li><a href="">
<img src="images/icon-reminders.svg" alt="">
Reminders
</a></li>
<li><a href="">
<img src="images/icon-planning.svg" alt="">
Planning
</a></li>
</ul>
</li>
<li class="list-team"><a href="#">Company <img class="btn-down" src="images/icon-arrow-down.svg" alt=""></a>
<ul class="list-2">
<li><a href="">History</a></li>
<li><a href="">Our Team</a></li>
<li><a href="">Blog</a></li>
</ul>
</li>
<li><a href="#">Careers</a></li>
<li><a href="#">About</a></li>
</ul>
<div class="register">
<a href="">Login</a>
<a href="">Register</a>
</div>
</div>
<div class="btn-menu">
<img src="images/icon-menu.svg" alt="">
</div>
</nav>
<!-- ===== navbar end ===== -->
<!-- ===== row header start ===== -->
<div class="row">
<div class="about-heding">
<h1>Make remote work</h1>
<p> Get your team in sync, no matter your location. Streamline processes,
create team rituals, and watch productivity soar.</p>
<a href="">Learn more</a>
<div class="images">
<img src="images/client-databiz.svg" alt="">
<img src="images/client-audiophile.svg" alt="">
<img src="images/client-meet.svg" alt="">
<img src="images/client-maker.svg" alt="">
</div>
</div>
<img class="img-1" src="images/image-hero-desktop.png" alt="">
<img class="img-2" src="images/image-hero-mobile.png" alt="">
</div>
<!-- ===== row header start ===== -->
</div>
</section>
<div class="shadow">
</div>
<!-- <div class="attribution">
Challenge by <a href="https://www.frontendmentor.io?ref=challenge" target="_blank">Frontend Mentor</a>.
Coded by <a href="#">Your Name Here</a>.
</div> -->
<script src="js/script.js"></script>
</body>
</html>