-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtableau.html
More file actions
88 lines (81 loc) · 3.39 KB
/
Copy pathtableau.html
File metadata and controls
88 lines (81 loc) · 3.39 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
<!DOCTYPE html>
<html lang="fr"><!-- signifier la langue dans laquelle est écrite la page !-->
<head><!-- toutes les informations relatives au document, le nom de la page, le nom de fichier à notre fichier, la description de notre page, lien vers des google font, liens vers javascript,insertion des fabicons !-->
<meta charset="UTF-8">
<!-- pour l'encodage, gérer les accents etc !-->
<meta name="description" content="tableau en HTML/CSS"> <!-- Meta= donnée; valeur= description ; éléments récupérés par google !-->
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>tableau</title>
<link rel="stylesheet" href="css/style.css"> <!-- Link c'est une information !-->
<link href="https://fonts.googleapis.com/css?family=Lato&Lemonada&Oswald" rel="stylesheet">
<link rel="stylesheet" href="font-awesome/css/font-awesome.min.css">
<body> <!-- Corps du document !-->
<header>
<div id="logo">
<a href="index.html"><img src="img/logo.png" alt="logo"></a>
</div>
<div id="slogan">
<h1>Mon premier site en HTML/CSS</h1>
</div>
<div id="reseauSociaux">
<i class="fa fa-facebook-official" aria-hidden="true"></i>
<i class="fa fa-instagram" aria-hidden="true"></i>
</div>
</header>
<nav>
<a href="index.html">Structure</a>
<a href="texte.html">Texte</a>
<a href="selecteurs.html">Selecteurs</a>
<a href="images.html">Image</a>
<a href="Position.html">Position</a>
<a href="tableau.html" class="couleur">Tableau</a>
<a href="listes.html">Liste</a>
<a href="zoning.html">Zoning</a>
<a href="ancres.html">Ancres</a>
<a href="Multimedia.html">Multimedia</a>
<a href="Animations.html">Animations</a>
</nav>
<main>
<h2>Tableau</h2>
<table>
<caption><i class="fa fa-plane" aria-hidden="true"></i> Vols Paris Rome</caption>
<tr>
<td></td>
<td>02/08/2017</td>
<td>03/08/2017</td>
<td>05/08/2017</td>
</tr>
<tr>
<td rowspan="2">Air France</td>
<td>Départ 10h - Arrivée 13h</td>
<td>Départ 15h - Arrivée 18h</td>
<td>Départ 17h - Arrivée 20h</td>
</tr>
<tr>
<td>200£</td>
<td>180£</td>
<td>170</td>
</tr>
<tr>
<td rowspan="2">Alitalia</td>
<td>Départ 6h-Arrivée 9h</td>
<td>Départ 13h- Arrivée 16h</td>
<td>Départ 21h- Arrivée 00h</td>
</tr>
<tr>
<td>120£</td>
<td>250£</td>
<td>100£</td>
</tr>
<tr>
<td></td>
<td>02/08/2017</td>
<td>03/08/2017</td>
<td>05/08/2017</td>
</tr>
</table>
</main>
<footer>
</footer>
</body>
</html>