-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
53 lines (45 loc) · 1.16 KB
/
index.html
File metadata and controls
53 lines (45 loc) · 1.16 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
47
48
49
50
51
52
53
<!DOCTYPE html>
<html lang="fr">
<head>
<title>Le Painthurlureur</title>
<meta charset="utf-8">
<link rel="shortcut icon" type="image/x-icon" href="img/favicon.ico" />
<link rel="stylesheet" type="text/css" href="css/painthurlureur.css" />
<script src="js/bdd.js"></script>
<script src="js/global.js"></script>
</head>
<body>
<section id="face">
<h2>Quelle face ?</h2>
<span id="alphabet_face"></span>
<br>
<select id="choix_face"></select>
</section>
<section id="encre">
<h2>Avec quelle encre ?</h2>
<select id="choix_encre"></select>
<select id="qualite_popo"></select>
<select id="qualite_champi" style="display:none;"></select>
<span id="indicateur_EP"></span>
</section>
<section id="fixant">
<h2>et quel agent fixant ?</h2>
<span id="alphabet_mob"></span>
<br>
<select id="choix_mob"></select>
<select id="qualite_mob"></select>
</section>
<section id="effet">
<h2>Effet attendu :</h2>
Min: <span id="bm_min"></span>
<br>
Max: <span id="bm_max"></span>
<br>
pendant
<span id="bm_duree"></span>
tours
</section>
<div id="debug" style="position:absolute;top:5px;left:5px;z-index:100;"></div>
<script src="js/interface.js"></script>
</body>
</html>