-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path04_selecteurs.html
More file actions
44 lines (37 loc) · 1.02 KB
/
04_selecteurs.html
File metadata and controls
44 lines (37 loc) · 1.02 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
<!DOCTYPE html>
<html lang="en">
<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>Les selecteurs</title>
<link rel="stylesheet" href="04_selecteurs.css">
</head>
<body>
<!-- h1+section>p*10-->
<h1>Titre</h1>
<section>
<p>1- Janvier</p>
<p>2- Fevrier</p>
<p>3- Mars</p>
<p>4- Avril</p>
<p>5- Mai</p>
<p>6- Juin</p>
<p>7- Juillet</p>
<p>8- Août</p>
<p>9- Septembre</p>
<p>10- Octobre</p>
</section>
<div class="zone1">Zone 1</div>
<div class="zone2">Zone 2 <span class="lime">moi je dois être vert citron</span></div>
<div id="zone3">Zone 3</div>
<div class="zone4">Zone 4 <span>44444</span></div>
<div class="zone5">Zone 5</div>
<ul>
<li>Zone 5 - 1</li>
<li>Zone 5 - 2</li>
<li>Zone 5 - 3</li>
</ul>
</div>
</body>
</html>