-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
79 lines (77 loc) · 2.19 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<style>
body{
margin: 0;
padding: 0;
font-family: Arial, sans-serif;
background: url(images/backgroud.jpg)
no-repeat center center fixed;
height: 100vh;
background-size: cover;
display: flex;
justify-content: center;
align-items: center;
}
.login-contrainer{
background: url(images/backgroud.jpg);
padding: 30px;
border-radius: 18px;
box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
width: 300px;
text-align: center;
}
.login-contrainer h2{
margin-bottom: 20px;
text-transform: uppercase;
letter-spacing: 3px;
color:blue;
}
.login-contrainer input{
width: 90%;
padding: 5px;
margin-bottom: 18px;
border: 1px solid black;
border-radius: 5px;
}
.login-contrainer button{
background-color: blue;
color:white ;
padding: 10px 20px;
border: none;
border-radius: 5px;
cursor: pointer;
}
.login-contrainer button:hover{
background-color: red ;
}
@media(max-width: 400px){
.login-contrainer{
width:80px;
}
}
</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="login-contrainer">
<h2>login</h2>
<form action="">
<input type="text" placeholder="username" required>
<input type="Password" placeholder="password" required>
<button type="submit">login</button>
</form>
</div>
</body>
</html>