-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
74 lines (73 loc) · 2.19 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link
rel="icon"
type="image/png"
sizes="32x32"
href="./images/favicon-32x32.png"
/>
<title>Frontend Mentor | Intro section</title>
<link rel="stylesheet" href="./styles/style.css" />
</head>
<body>
<main class="main-container">
<nav class="nav">
<span class="logo">snap</span>
<ul class="nav-list">
<li><a href="#">Features</a></li>
<li><a href="#">Company</a></li>
<li><a href="#">Carrers</a></li>
<li><a href="#">About</a></li>
</ul>
<div class="options">
<button class="login">Login</button>
<button class="signup">Register</button>
</div>
<label class="menu-icon" for="menu-toggle">☰</label>
<input type="checkbox" id="menu-toggle" />
</nav>
<section class="hero">
<article class="about-info">
<h1>
Make
<h1>remote work</h1>
</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">Learn more</button>
<div class="images">
<img
src="./images/client-databiz.svg"
alt="databiz company logo"
draggable="false"
/>
<img
src="./images/client-audiophile.svg"
alt="audiophile company logo"
draggable="false"
/>
<img
src="./images/client-meet.svg"
alt="meet company logo"
draggable="false"
/>
<img
src="./images/client-maker.svg"
alt="maker company logo"
draggable="false"
/>
</div>
</article>
<article class="side-image">
<img src="./images/image-hero-desktop.png" draggable="false" />
</article>
</section>
</main>
<script src="./main.js"></script>
</body>
</html>