This commit is contained in:
Emmanuel Srivastava
2024-12-11 11:49:08 +01:00
parent 16332fec34
commit 7bc0c88705
8 changed files with 168 additions and 0 deletions

20
DEV.1.2/tp2/ex6.html Normal file
View File

@@ -0,0 +1,20 @@
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="utf-8">
<meta name="viewport" content="initial-scale=1,witdh=device-width">
<title>Exercice 6</title>
<link rel="stylesheet" href="./style6.css">
</head>
<body>
<table>
<tbody>
<tr><td rowspan="5"></td><td colspan="3"></td><td rowspan="4"></td></tr>
<tr><td rowspan="3"></td><td></td><td rowspan="2"></td></tr>
<tr><td></td></tr>
<tr><td colspan="2"></td></tr>
<tr><td colspan="4"></td></tr>
</tbody>
</table>
</body>
</html>