-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
41 lines (41 loc) · 1.7 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
<!DOCTYPE html>
<html lang="en">
<head>
<title></title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href="css/style.css" rel="stylesheet">
</head>
<body>
<div id="testForm">
<h2 class="orange">Workshops</h2>
<ul>
<li>
<input id="A1" type="checkbox"><label for="A1">Worshop 1 : <strong>8:30 - 20:20</strong></label>
</li>
<li>
<input id="A2" type="checkbox"><label for="A2">Worshop 2 : <strong>8:30 - 20:20</strong></label>
</li>
<li>
<input id="A3" type="checkbox"><label for="A3">Worshop n°3 : <strong>14:30 - 15:15</strong></label>
</li>
<li>
<input id="A4" type="checkbox"><label for="A4">Worshop n°4 : <strong>14:30 - 15:15</strong></label>
</li>
<li>
<input id="A5" type="checkbox"><label for="A5">Worshop n°5 : <strong>15:30 - 16:45</strong></label>
</li>
<li>
<input id="A6" type="checkbox"><label for="A6">Worshop n°6 : <strong>15:30 - 16:45</strong></label>
</li>
<li>
<input id="A7" type="checkbox"><label for="A7">Worshop n°7 : <strong>16:30 - 17:15</strong></label>
</li>
<li>
<input id="A8" type="checkbox"><label for="A8">Worshop n°8 : <strong>16:45 - 17:15</strong></label>
</li>
</ul>
</div>
<script src="app.js"></script>
</body>
</html>