-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
54 lines (49 loc) · 1.75 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<link rel="stylesheet" href="/css/styles.css">
</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="./img/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://cdn.jsdelivr.net/npm/[email protected]/dist/gsap.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/Flip.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/ScrollToPlugin.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/EaselPlugin.min.js"></script>
<script src="/app.js"></script>
</body>
</html>