-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgarage.html
More file actions
62 lines (52 loc) · 1.84 KB
/
garage.html
File metadata and controls
62 lines (52 loc) · 1.84 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
<!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>miniSITE : garage / une page avec des styles CSS</title>
<link href="css/style.css" rel="stylesheet">
<!-- des styles dans la page :-->
<style>
body {
text-align: center;
/* background: plum; */
}
h2 {
color: white;
border: solid 5px white;
}
/* un commentaire en css */
/* les titres de classe "titre" sont en Arial */
/* .titre2 {
font-family: Arial;
} */
/* une classe fond vert tout sera sur un fond vert */
.fondvert {
background: green;
border: solid 5px white;
}
</style>
</head>
<body>
<!--début de la div principale-->
<div>
<!--en-tête de la page ou d'une division ou d'une section-->
<header>
<h1>Garage des tacos</h1>
<!-- dans le h1 dans styles en ligne -->
</header>
<!--la navigation de la page-->
<nav class="fondvert">Navigation</nav>
<!--du contenu textuel-->
<article>
<h2 style="font-size: 25px; background: pink">Voitures anciennes</h2>
<h2 class="fondvert">Nos services</h2>
<h2 class="fondvert">Pièces sur mesure</h2>
<h2>Pneumatiques toutes dimensions</h2>
</article>
<!--le pied de page-->
<footer>Pied de page</footer>
</div>
</body>
</html>