-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
155 lines (133 loc) · 5.04 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
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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
<!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">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Epilogue:wght@500;700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="./style/style.css">
<title>Frontend Mentor | Intro section with dropdown navigation</title>
<style>
.attribution { font-size: 11px; text-align: center; }
.attribution a { color: hsl(228, 45%, 44%); }
</style>
<script src="./script/main.js" defer></script>
</head>
<body>
<aside class="overlay">
</aside>
<aside class="side-toggle">
<img src="./images/icon-close-menu.svg" class="close-menu" alt="close menu icon">
<ul class="side-toggle-list">
<li><span id="feature-mobile">Features</span>
<img src="./images/icon-arrow-down.svg" class="feature-dropdown-img" alt="feature dropdown icon">
<ul class="feature-dropdown">
<li><img src="./images/icon-todo.svg" alt="todo icon">Todo List</li>
<li><img src="./images/icon-calendar.svg" alt="calendar">Calendar</li>
<li><img src="./images/icon-reminders.svg" alt="remider icon">Reminders</li>
<li><img src="./images/icon-planning.svg" >Planning</li>
</ul>
</li>
<li><span id="company-mobile">Company</span>
<img src="./images/icon-arrow-down.svg" class="company-dropdown-img" alt="company dropdown icon">
<ul class="company-dropdown">
<li>History</li>
<li>Our Team</li>
<li>Blog</li>
</ul>
</li>
<li>Careers</li>
<li>About</li>
</ul>
</aside>
<header id="mobile-header">
<nav>
<img id="snap-logo" src="./images/logo.svg" alt="snap logo">
<img id="icon-menu" src="./images/icon-menu.svg" alt="">
</nav>
</header>
<!-- Desktop Header Section -->
<header id="desktop-header">
<nav>
<section id="section-1">
<img src="./images/logo.svg" alt="snap-logo">
<ul>
<li ><span id="feature">Feature</span>
<img src="./images/icon-arrow-down.svg" class="featureDesktop-dropdown-img" alt="feature dropdown icon">
<ul class="featureDesktop-dropdown">
<li><img src="./images/icon-todo.svg" alt="todo icon"><span>List</span></li>
<li><img src="./images/icon-calendar.svg" alt="calendar"><span>Calendar</span></li>
<li><img src="./images/icon-reminders.svg" alt="remider icon"><span>Reminders</span></li>
<li><img src="./images/icon-planning.svg" ><span>Planning</span></li>
</ul>
</li>
<li><span id="company">Company</span>
<img src="./images/icon-arrow-down.svg" class="companyDesktop-dropdown-img" alt="feature dropdown icon">
<ul class="companyDesktop-dropdown">
<li>History</li>
<li>Our Team</li>
<li>Blog</li>
</ul>
</li>
<li>Careers</li>
<li>About</li>
</ul>
</section>
<section id="section-2">
<ul>
<li>Login</li>
<li id="register">Register</li>
</ul>
</section>
</nav>
</header>
<main>
<section id="main-section-1">
<div class="mobile-hero">
<img src="./images/image-hero-mobile.png" alt="mobile image hero">
</div>
<div>
<h1>
Make
<br>
remote work
</h1>
<p> Get your team in sync, no matter your location. Streamline processes,
create team rituals, and watch productivity soar.</p>
<button class="learn-more-btn">
Learn more
</button>
<footer>
<section class="mobile-footer-logo">
<img src="./images/client-databiz.svg" alt="databiz">
<img src="./images/client-audiophile.svg" alt="audiophile">
<img src="./images/client-meet.svg" alt="meet">
<img src="./images/client-maker.svg" alt="maker">
</section>
</footer>
</div>
</section>
<section id="main-section-2">
<div>
<!-- <img src="" class="desktop-hero" alt="image desktop hero"> -->
</div>
</section>
</main>
<!-- Features
Company
Careers
About
Login
Register
Make remote work
Get your team in sync, no matter your location. Streamline processes,
create team rituals, and watch productivity soar.
Learn more -->
<div class="attribution">
Challenge by <a href="https://www.frontendmentor.io?ref=challenge" target="_blank">Frontend Mentor</a>.
Coded by <a href="#">Damilola Ayodele</a>.
</div>
</body>
</html>