-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
122 lines (110 loc) · 3.69 KB
/
index.html
File metadata and controls
122 lines (110 loc) · 3.69 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
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
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge"><!--s'assure de la compatibilité avec edge-->
<meta name="viewport" content="width=device-width, initial-scale=1.0"><!--Pour que le navigateur comprenne que la page est en responsive-->
<link rel="stylesheet" href="assets/style.css" >
<title>Document</title>
<meta name="description" content="Ma page d'accueil" ><!--Bot lit cette ligne pour tt ce qui est référencement -->
</head>
<body>
<header>
<h1>Ma super Page</h1>
</header>
<section>
<h2>Section</h2>
<figure>
<img src="Vinland-Saga-Wallpaper-4k.jpeg" width = "50%" height="40%" alt="Photo">
<figcaption>Best of the best</figcaption>
</figure>
<p>lekzjhbfdjnksaloizjfhegubvjcnkxoqlp oaizhuebvh jncsk,xlkosjdncb </p>
</section>
<section>
<h4>Listes ordonnées</h4>
<ol>
<li>slash</li>
<li>Bim</li>
<li>fuuuu</li>
</ol>
<a href="index.html" target="_blank">lola</a>
<h1>iai</h1><h1>iai</h1><h1>iai</h1>
</section>
<section>
<h4>Tableau</h4>
<table>
<thead>
<tr>
<th>Cri de joie</th>
<th>Cri de peur</th>
</tr>
</thead>
<tbody>
<tr>
<td>Super</td>
<td>YI</td>
</tr>
</tbody>
</table>
</section>
</section>
<section>
<form method="post" action="traitement.php">
<p>
<label for="Monsieur"> Monsieur </label> :
<input type="radio" name="civ" id="Monsieur">
<label for="Madame"> Madame </label> :
<input type="radio" name="civ" id="Madame">
</p>
<p>
<label for="pseudo"> Pseudo </label> :
<input type="text" name="pseudo" id="pseudo">
</p>
<p>
<label for="mdp"> Mot de passe </label> :
<input type="password" name="pass" id="mdp">
</p>
<p>
<label for="numéro"> Téléphone </label> :
<input type="tel" name="num" id="numéro">
</p>
<p>
<label for="mail"> E-mail </label> :
<input type="email" name="mail" id="mail">
</p>
<p>
<label for="color"> Couleur </label> :
<input type="color" name="couleur" id="color">
</p>
<p>
Manga préferé :
<input type="checkbox" name="manga" id="OP">
<label for="OP"> One piece </label>
<input type="checkbox" name="manga" id="jj">
<label for="jj"> JoJo </label>
<input type="checkbox" name="manga" id="ninja">
<label for="ninja"> Naruto </label>
<input type="checkbox" name="manga" id="VS">
<label for="VS"> Vinland Saga </label>
</p>
<p>
<label> Donnez votre avis </label><br>
<textarea></textarea>
</p>
<p>
<label for="famille"> Nombres de frères et soeurs </label> :
<select name="frèreSoeurs" id="famille">
<option value="1"> 1</option>
<option value="2"> 2</option>
<option value="3"> 3</option>
<option> 4</option>
<option value="4"> Plus de 4</option>
</select>
</p>
<p>
<input type="submit" name="validez">
</p>
</form>
</section>
</body>
</html>