Exercice HTML corrigé tableaux de conjugaison

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
<head>
<meta charset="utf-8" />
<title>Page 2</title>
<style type="text/css">
th,td,table {
    border: solid;
}
</style>
</head>
<body>
 
    <h1>Exo 2</h1>
 
    <p>Créez cette jolie table :</p>
    <table>
        <caption>Conjugaisons</caption>
        <tr>
            <th colspan="2"></th>
            <th colspan="2">Premier groupe</th>
            <th colspan="2">Deuxième groupe</th>
        </tr>
        <tr>
            <th></th>
            <th>Personne</th>
            <th>Singulier</th>
            <th>Pluriel</th>
            <th>Singulier</th>
            <th>Pluriel</th>
        </tr>
        <tr>
            <th rowspan="3">présent</th>
            <th>1</th>
            <td>je mange</td>
            <td>nous mangeons</td>
            <td>je finis</td>
            <td>nous finissons</td>
        </tr>
        <tr>
            <th>2</th>
            <td>tu manges</td>
            <td>vous mangez</td>
            <td>tu finis</td>
            <td>vous finissez</td>
        </tr>
        <tr>
            <th>3</th>
            <td>il mange</td>
            <td>ils mangent</td>
            <td>il finit</td>
            <td>ils finissent</td>
        </tr>
        </table
</body>
</html>

Télécharger aussi :

Laisser un commentaire

Votre adresse e-mail ne sera pas publiée. Les champs obligatoires sont indiqués avec *

Besoin d'aide ?