forked from Ggoldenberg/html-init
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathemploi-du-temps.html
86 lines (81 loc) · 1.71 KB
/
emploi-du-temps.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Emploi du temps</title>
<link rel="stylesheet" href="css/tables.css">
</head>
<body>
<table>
<caption>Emploie du temps BTS SIO</caption>
<thead>
<tr>
<td></td>
<td>Lundi</td>
<td>Mardi</td>
<td>Mercredi</td>
<td>Jeudi</td>
<td>Vendredi</td>
</tr>
</thead>
<tr>
<th>8H30-9H30</th>
<td></td>
<td></td>
<td rowspan="4">Support 1</td>
<td rowspan="3">Cult eco jur & mana</td>
<td rowspan="3">Atelier professionnalisation</td>
</tr>
<tr>
<th>9H30-10H20</th>
<td></td>
<td rowspan="2"> Support 2</td>
</tr>
<tr>
<th>10H40-11H30</th>
<td rowspan="2">cult.gene.expressio</td>
</tr>
<tr>
<th>11H30-12H30</th>
<td>Math approfondies</td>
<td></td>
<td rowspan="2">support 2</td>
</tr>
<tr>
<th>12H30-13H30</th>
<td></td>
<td></td>
<td></td>
<td rowspan="2">Cult eco & mana</td>
</tr>
<tr>
<th>13H30-14H30</th>
<td rowspan="3">Support 3</td>
<td rowspan="2">Anglais</td>
<td rowspan="3">Cybersécurité</td>
</tr>
<tr>
<th>14H30-15H20</th>
<td>Mathématiques</td>
</tr>
<tr>
<th>15H40-16H30</th>
<td rowspan="2">Mathématiques</td>
<td>Math approfondies</td>
</tr>
<tr>
<th>16H30-17H30</th>
<td></td>
<td></td>
<td></td>
</tr>
<tr>
<th>17H30-18H30</th>
<td></td>
<td></td>
<td></td>
<td></td>
</tr>
</table>
</body>
</html>