-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathindex.html
60 lines (57 loc) · 2.08 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
<!doctype html>
<html class="no-js" lang="">
<head>
<meta charset="utf-8">
<title>HEPL - DCC - Développement Côté Client | Liste de fruits</title>
<meta name="description" content="Cours Javascript 2019-2020">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="apple-touch-icon" href="icon.png">
<link rel="stylesheet" href="dist/css/style.min.css">
<meta name="theme-color" content="#fafafa">
</head>
<body>
<!--[if IE]>
<p class="browserupgrade">Vous utilisez un navigateur <strong> obsolète </strong>. Veuillez <a
href="https://browsehappy.com/"> mettre à niveau
votre navigateur </a> pour améliorer votre expérience et votre sécurité.
</p>
<![endif]-->
<p class="no-js__message">
Pour accéder à toutes les fonctionnalités de ce site, vous devez activer JavaScript.
Voici les <a href="https://www.enable-javascript.com/fr/">
instructions pour activer JavaScript dans votre navigateur Web</a>.
</p>
<form action="index.html" method="post" class="inbox">
<div class="item">
<input name="pomme" id="pomme" type="checkbox">
<label for="pomme">Pomme</label>
</div>
<div class="item">
<input name="poire" id="poire" type="checkbox">
<label for="poire">Poire</label>
</div>
<div class="item">
<input name="abricot" id="abricot" type="checkbox">
<label for="abricot">Abricot</label>
</div>
<div class="item">
<input name="mangue" id="mangue" type="checkbox">
<label for="mangue">Mangue</label>
</div>
<div class="item">
<input name="ananas" id="ananas" type="checkbox">
<label for="ananas">Ananas</label>
</div>
<div class="item">
<input name="papaye" id="papaye" type="checkbox">
<label for="papaye">Papaye</label>
</div>
<div class="item">
<input name="goyave" id="goyave" type="checkbox">
<label for="goyave">Goyave</label>
</div>
<input type="submit" class="hidden" value="Soumettre votre choix">
</form>
<script src="dist/js/script.min.js"></script>
</body>
</html>