-
Notifications
You must be signed in to change notification settings - Fork 0
/
exo.html
65 lines (63 loc) · 1.81 KB
/
exo.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=, initial-scale=1.0">
<title>Document</title>
<STYLE>
body{
margin: 0;
padding: 0;
background-color:aqua;
align-items:center;
justify-content:center;
display:flex;
height: 100vh;
}
.inscription-form{
width:300px;
padding:20px;
border: 1px solid black;
border-radius: 20px;
text-align:center;
}
.inscription-form h2{
text-transform:uppercase;
font-size: 20px;
margin-bottom: 25px;
color: blue;
letter-spacing: 6px;
}
.inscription-form input{
width:90%;
margin-bottom: 20px;
border-radius: 5px;
padding: 6px;
}
.inscription-form button{
background-color:blueviolet;
padding: 10px 20px;
border-radius: 5px;
}
</STYLE>
</head>
<body>
<div class="menu">
<ul>
<li><a href="autre.html"></a></li>
<li><a href="exo.html"></a></li>
<li><a href="index.html"></a></li>
<li><a href="javascript.html"></a></li>
</ul>
</div>
<div class="inscription-form">
<h2>S'inscrire</h2>
<input type="text" placeholder="prenom" required>
<input type="text" placeholder="nom" required>
<input type="email" placeholder="Adress Email" required>
<input type="password" placeholder="mot de passe" required>
<input type="password" placeholder="repeter votre mot de passe" required>
<button type="submit">ENVOYER</button>
</div>
</body>
</html>