-
Notifications
You must be signed in to change notification settings - Fork 0
/
contact.html
41 lines (41 loc) · 1.71 KB
/
contact.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style.css">
<title>Document</title>
</head>
<body>
<section class="section-p3">
<header>
<h2 class="h2super">SUPER-HEROS</h2>
<ul>
<li><a href="index.html" >Acceuil</a></li>
<li><a href="avengers.html" >Avengers</a></li>
<li><a href="contact.html" >Se connecter</a></li>
<li><a href="aproposdemoi.html" >A propos de moi</a></li>
</ul>
</header>
<div class="formulaire">
<form class="formulaire">
<div class="formext">
<h1 class="title-title-1">Se connecter</h1>
<form class="form">
<div class="form__group">
<input type="email" class="form__input" id="email" placeholder="Votre Email" required>
<label for="email" class="form__label">Votre Email</label>
</div>
<div class="form__group">
<input type="password" class="form__input" id="nom" placeholder="Votre mot de passe" required>
<label for="nom" class="form__label">Mot de passe</label>
</div>
<div class="submit">
<button class="submitBtn">Connexion →</button>
</div>
</form>
</div>
</section>
</body>
</html>