-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
165 lines (163 loc) · 5.12 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
156
157
158
159
160
161
162
163
164
165
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<link rel="icon" href="assets/src/img/green-logo-spotify.png" />
<link rel="stylesheet" href="assets/css/reset.css" />
<link rel="stylesheet" href="assets/css/style.css" />
<script src="assets/javascript/noframework.waypoints.min.js"></script>
<script src="assets/javascript/script.js" defer></script>
<title>Satisfy by Spotify</title>
</head>
<body>
<header>
<a href="#hero">
<img
id="icon-spotify"
src="assets/src/img/white-logo-spotify.png"
alt="logo-white"
/>
</a>
<nav>
<ul>
<a href="#hero"><li>Satisfy</li></a>
<a href="#product"><li>Concept</li></a>
<a href="#feature"><li>Technologie</li></a>
<a href="#pre-order"><li>Commander</li></a>
</ul>
<div class="icon" id="icon">
<div class="hamburger" id="hamburger"></div>
</div>
</nav>
</header>
<menu class="menu">
<ul>
<a href="#hero"><li>Satisfy</li></a>
<a href="#product"><li>Concept</li></a>
<a href="#feature"><li>Technologie</li></a>
<a href="#pre-order"><li>Commander</li></a>
</ul>
</menu>
<!-- #hero -->
<section id="hero" class="section-hero">
<div class="main-title">
<h1>Satisfy</h1>
<p>by <em>Spotify</em></p>
</div>
<div class="product-description">
<p>Une nouvelle façon de ressentir la musique.</p>
</div>
<img
id="swipeDown"
src="assets/src/img/arrow-down.png"
alt="arrow"
class="swipe-down"
/>
</section>
<!-- #product -->
<section class="product" id="product">
<div class="product-title">
<h2 class="toAnimate">Laissez vos émotions s'exprimer.</h2>
<p>La musique en fonction de votre <em>humeur</em>.</p>
</div>
<div class="product-btn">
<a href="html/vivez-en-musique.html"
><button class="btn">Vivez en musique !</button></a
>
<a href="html/pourquoi-satisfy.html"
><button class="btn">Pourquoi satisfy ?</button></a
>
</div>
</section>
<section class="feature-block" id="features1">
<article class="feature-titles">
<h2>Satisfy</h2>
<p>Des capteurs, pour savoir de quelle humeur vous êtes.</p>
</article>
<article class="first-feature">
<article class="feature" id="feature">
<img src="assets/src/img/sport-icon.png" alt="sport" />
<article>
<h3>Sportif ?</h3>
<p>
Un capteur de rythme cardiaque détecte si votre pouls s’accélère.
</p>
</article>
</article>
<article class="feature">
<img src="assets/src/img/stress-icon.png" alt="stress" />
<article>
<h3>Un coup de chaud ?</h3>
<p>
Un capteur détermine si vous êtes bien au chaud ou dehors en
hiver.
</p>
</article>
</article>
<article class="feature">
<img src="assets/src/img/sweat-icon.png" alt="sweat" />
<article>
<h3>Stressé ?</h3>
<p>
Des capteurs d’odeur et d’humidité sont là pour savoir si vous
passez une journée difficile.
</p>
</article>
</article>
</article>
<article class="feature-titles">
<h2>Diffuser de la musique, partout, tout le temps.</h2>
</article>
<article class="second-feature">
<article class="feature">
<img src="assets/src/img/icon-batterie.png" alt="battery" />
<article>
<p>
48h d’autonomie.
</p>
</article>
</article>
<article class="feature">
<img src="assets/src/img/icon-stream.png" alt="battery" />
<article>
<p>
Streamez partout.
</p>
</article>
</article>
<article class="feature">
<img src="assets/src/img/icon-music.png" alt="battery" />
<article>
<p>
La qualité sonore et la bibliothèque spotify.
</p>
</article>
</article>
</article>
</section>
<section id="pre-order" class="pre-order">
<h1>Comment en profiter ?</h1>
<p class="premium-btn">6 mois de premium offert</p>
<h2>Écouteurs Satisfy</h2>
<p>350€</p>
<p>Garantie de 2 ans.</p>
<a href="html/form.html"><button class="btn">Commander</button></a>
</section>
</body>
<footer>
<nav>
<ul>
<li>Legal</li>
<li>Cookies</li>
<li><a href="https://www.spotify.com/fr/">À propos de Spotify</a></li>
</ul>
</nav>
<div>
<p>France <img src="assets/src/img/flag.png" alt="" /></p>
<p>©2019 Spotify AB</p>
</div>
</footer>
<script src="assets/javascript/script.js"></script>
</html>