-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathexercice3.html
52 lines (41 loc) · 1.23 KB
/
exercice3.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
<html>
<head>
<title> En tête de ma page </title>
</head>
<body>
<!--
Commentaire
-->
<table border =1>
<thead>
<tr>
<th colspan="3">Répartition H/F</th>
</tr>
<tr>
<th></th>
<th><img src="images/mars.png" alt="Mars" height="42" width="42"/></th>
<th><img src="images/venus.png" alt="Venus" height="42" width="42"/></th>
</tr>
</thead>
<tfoot>
<tr>
<td><strong>Total</strong></td>
<td><strong>18</strong></td>
<td><strong>18</strong></td>
</tr>
</tfoot>
<tbody>
<tr>
<td>Agents</td>
<td>7</td>
<td>8</td>
</tr>
<tr>
<td>Cadres</td>
<td>11</td>
<td>10</td>
</tr>
</tbody>
</table>
</body>
</html>