-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathindex.html
More file actions
46 lines (46 loc) · 1.24 KB
/
index.html
File metadata and controls
46 lines (46 loc) · 1.24 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>N3</title>
</head>
<body>
<div class="hero-image-start"></div>
<div class="preloader">
<p class="preloader__text">
<span>Say hello to N3</span>
</p>
<div class="preloader__background"></div>
</div>
<header class="header">
<p class="header__menu">Menu</p>
<p class="header__logo">N3</p>
<button class="button">Order</button>
</header>
<div class="hero__wrapper">
<section class="hero">
<div class="hero__image">
<img src="./hero.jpg" alt="N3 Bike" />
</div>
<div class="hero__content">
<p class="hero__caption">
<span>More details. More fun.</span>
</p>
<h1 class="hero__title">
<span>
<span>A new way to </span>
</span>
<span>
<span>ride in style.</span>
</span>
</h1>
<button class="hero__button button button--white">Explore</button>
</div>
</section>
</div>
<script src="https://s3-us-west-2.amazonaws.com/s.cdpn.io/16327/GSDevTools3.min.js"></script>
<script type="module" src="/app.js"></script>
</body>
</html>