-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathnewsletter1.html
More file actions
45 lines (44 loc) · 1.22 KB
/
Copy pathnewsletter1.html
File metadata and controls
45 lines (44 loc) · 1.22 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
<!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>newsletter1</title>
<link rel="stylesheet" href="css/newsletter1.css">
</head>
<body>
<table>
<caption>prix des transports</caption>
<thead>
<tr>
<th></th>
<th>ticket</th>
<th>navigo</th>
<tbody>
<tr>
<td>1 jour</td>
<td> 2 euro</td>
<td>....</td>
</tr>
<tr>
<td>1 semaine</td>
<td>20 euro</td>
<td>20 euro</td>
</tr>
<tr>
<td>1 mois</td>
<td>.....</td>
<td>70 euro</td>
</tr>
<tr>
<td>1 an</td>
<td>....</td>
<td>800 euro</td>
</tr>
</tbody>
</tr>
</thead>
</table>
</body>
</html>