-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
152 lines (140 loc) · 4.47 KB
/
index.html
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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<!-- Le titre de la page -->
<title>Cours HTML</title>
<!-- Icone de l'onglet -->
<link rel="shortcut icon" href="html-logo.png" />
<link rel="stylesheet" href="style.css" />
</head>
<body>
<header>
<h1>Nono_archi</h1>
<p>
<em><strong>em</strong> pour mettre en italique</em>,
<strong>strong pour mettre en gras</strong>
<span>L'élement en span ne revient pas à la ligne</span>.
</p>
<p>
<strong>p</strong> Pour un paragraphe<br>
<strong>br</strong> Pour un retour a la ligne<br>
<strong>Lorem</strong> ipsum dolor sit amet consectetur adipisicing elit. Exercitationem
cumque ratione veniam officiis nulla a debitis at facilis sed
dignissimos.
</p>
</header>
<section>
<div>
<h2>Photo - Titre H2</h2>
<p><strong>img</strong> Pour une Image</p>
<img src="./files/img-1.jpg" alt="image-arbre" height="300px" />
</div>
<div>
<h3>Liste - Titre H3</h3>
<p><strong>ul</strong> Pour une liste desordoner<br></p>
<ul>
<li>UL = unordered list</li>
<li>UL = unordered list</li>
<li>UL = unordered list</li>
</ul>
<p><strong>ol</strong> Pour une liste ordonner<br></p>
<ol>
<li>OL = ordered list</li>
<li>OL = ordered list</li>
<li>OL = ordered list</li>
</ol>
</div>
<div>
<h4>Tableaux - Titre H4</h4>
<table border="1" cellpadding="5" cellspacing="0" style="text-align: center">
<thead>
<tr>
<th>Col 1</th>
<th>Col 2</th>
<th>Col 3</th>
<th>Col 4</th>
</tr>
</thead>
<tbody>
<tr>
<td rowspan="3">Row 1 Cell 1</td>
<td rowspan="2">Row 1 Cell 2</td>
<td>Row 1 Cell 3</td>
<td>Row 1 Cell 4</td>
</tr>
<tr>
<td>Row 2 Cell 3</td>
<td>Row 2 Cell 4</td>
</tr>
<tr>
<td colspan="2">Row 3 Cell 2</td>
<td>Row 3 Cell 4</td>
</tr>
</tbody>
</table>
</div>
<!-- Liens-->
<div>
<h5>Liens - Titre H5</h5>
<a href="https://htmlcheatsheet.com/" target="_blank">HTML Cheatsheet</a>
<br><br>
<a href="https://htmlcheatsheet.com/css/" target="_blank">CSS Cheatsheet</a>
<br><br>
<a href="https://www.toptal.com/designers/htmlarrows/symbols/" target="_blank"> Icones natifs en HTML </a>
</div>
<div>
<h6><i class="fas fa-video"></i> Vidéo - Titre H6</h6>
<video src="video.mp4" height="150" autoplay loop muted></video>
</div>
</section>
<br />
<!-- Formulaires en HTML -->
<section>
<h6>Formulaire</h6>
<form action="/action.php" method="post">
<label for="name">Nom</label>
<input id="name" type="text" placeholder="Entrez votre nom" /><br />
<label for="number">Entrez votre age</label>
<input type="number" id="number-age" value="15" oninput="document.getElementById('range-age').value=this.value">
<input type="range" id="range-age" min="0" max="100"
oninput="document.getElementById('number-age').value=this.value"><br />
<!-- Input select -->
<label for="gender">Genre</label>
<select id="gender">
<option selected="selected" value="Homme">Homme</option>
<option value="Femme">Femme</option>
</select><br />
<!-- Input radio -->
<div>
<input type="radio" name="type" id="human" checked />
<label for="human">Humain</label>
<input type="radio" name="type" id="dog" />
<label for="dog">Chien</label>
<input type="radio" name="type" id="cat" />
<label for="cat">Chat</label>
</div>
<textarea cols="20" rows="5" placeholder="Votre message..."></textarea><br />
<!-- Input Checkbox -->
<label><input type="checkbox"/>Accepter les CGV</label> <br />
<input type="submit" value="Submit" />
</form>
</section>
<br />
<!-- Mail & envoi de fichiers -->
<footer>
<details>
<summary>Plus d'infos</summary>
<p>
details pour un menu et summary pour le titre
</p>
</details>
<br>
<a href="mailto:noahseitier@gmail.com">Ecrivez-moi !</a>
<br><br>
<a ref="notice.txt" download="nom-du-fichier">Télécharger la notice</a>
<br><br>
</footer>
</body>
</html>