-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
79 lines (67 loc) · 2.5 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
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Azertype</title>
<!-- Inclusion du fichier css pour le style du jeu -->
<link rel="stylesheet" href="style/style.css">
<!-- Inclusion des 3 scripts nécessaires pour faire fonctionner le jeu -->
<!-- Attention, l'ordre des fichiers js est important. -->
<script src="scripts/config.js" defer></script>
<script src="scripts/popup.js" defer></script>
<script src="scripts/script.js" defer></script>
<script src="scripts/main.js" defer></script>
</head>
<body>
<!-- HEADER -->
<header>
<h1>AzerType</h1>
<h2>L'application pour écrire plus vite !</h2>
<h3>AzerType est une application en ligne pour apprendre à taper plus vite au clavier :)</h3>
</header>
<!-- MAIN -->
<main>
<div class="zoneOptions">
<p>Choisissez votre option et tapez la proposition qui s'affiche dans le champ en-dessous.</p>
<div class="optionSource">
<input type="radio" name="optionSource" id="mots" value="1" checked>
<label for="mots">Mots</label>
<input type="radio" name="optionSource" id="phrases" value="2">
<label for="phrases">Phrases</label>
</div>
</div>
<div class="zoneProposition">
Azerty
</div>
<div class="zoneSaisie">
<input type="text" id="inputEcriture" name="inputEcriture">
<button id="btnValiderMot">Valider</button>
</div>
<div class="zoneScore">
Votre score : <span>0</span>
</div>
<div class="zonePartage">
<button>Partager</button>
</div>
</main>
<!-- FOOTER -->
<footer>
@Copyright : Openclassrooms.
</footer>
<!-- Popup de partage -->
<div class="popupBackground">
<div class="popup">
<div>Partagez votre score</div>
<form>
<label for="nom">Votre nom</label>
<input type="text" id="nom" name="nom" placeholder="Votre nom">
<label for="email">Avec qui voulez-vous partager votre score ?</label>
<input type="email" id="email" name="email" placeholder="[email protected]">
<button id="btnEnvoyerMail">Envoyer</button>
</form>
</div>
</div>
</body>
</html>