-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathselecteurs.html
More file actions
75 lines (66 loc) · 2.92 KB
/
Copy pathselecteurs.html
File metadata and controls
75 lines (66 loc) · 2.92 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
<!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="Mes selecteurs 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>Mon texte</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">
<!-- les moteurs de recherche s'en servent pour les recherches !-->
</head>
<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>
<!-- Zone du haut, bannière, logo, slogan !-->
</header>
<nav>
<a href="index.html">Structure</a>
<a href="texte.html">Texte</a>
<a href="selecteurs.html" class="couleur">Selecteurs</a>
<a href="images.html">Image</a>
<a href="Position.html">Position</a>
<a href="tableau.html">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>Selecteurs</h2>
<section class="select">
<h3>Les selecteurs</h3>
<p>texte n°1</p>
<p>texte n°2</p>
<p>texte n°3</p>
<p>texte n°4</p>
<p>texte n°5</p>
<p>texte n°6</p>
<p>texte n°7</p>
<p>texte n°8</p>
<p>texte n°9</p>
<p>texte n°10</p>
<div class="zoneA">Zone A</div>
<div class="zoneB">Zone B Zone B<span class="couleurBleu"
>texte</span>Zone B Zone B</div>
<div id="ZoneC">Zone C</div>
<div id="zoneD">Zone <span>D</span></div>
</section>
</main>
<footer>
<!-- Zone du bas, ex : liens administratifs, mentions légales, plan du site, CGU, CGV, contact, copyright etc !-->
</footer>
</body>
</html>