-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathnewsletter.html
More file actions
48 lines (47 loc) · 1.57 KB
/
Copy pathnewsletter.html
File metadata and controls
48 lines (47 loc) · 1.57 KB
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
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>newsletter</title>
<link rel="stylesheet" href="css/newsletter.css">
</head>
<body>
<!-- ouverture du tableau -->
<table border="1" align="center" style="border-collapse:collapse;">
<!-- tr = rang (t = tableau / r = row = rangée) -->
<tr>
<td width="650" height="150" colspan="5" align="center">Espace 1</td>
</tr>
<tr>
<!-- td = cellules -->
<td align="center">Espace 2</td>
<td align="center">Espace 3</td>
<td align="center">Espace 4</td>
<td align="center">Espace 5</td>
<td align="center">Espace 6</td>
</tr>
<tr>
<td colspan="5" align="center" height="50">Espace 7</td>
</tr>
<tr>
<td colspan="5" align="center" height="50">Espace 8</td>
</tr>
<tr>
<!-- colspan : largeur d'une cellule exprimée en nombre de colonnes -->
<!-- rowspan : hauteur d'une cellule exprimée en nombre de lignes -->
<td colspan="3" rowspan="2" align="center" height="170" style="color: #ff0000; font-weight: bold; font-size:20px; font-family:verdana;"
align="top">Espace 9</td>
<td colspan="2" align="center" height="170">Espace 10</td>
</tr>
<tr>
<td align="center">Espace 11</td>
<td align="center">Espace 12</td>
</tr>
<tr>
<td colspan="5" align="center">Espace 13</td>
</tr>
</table>
</body>
</html>