forked from AbhishekSharma-86/HTM2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
login.html
71 lines (70 loc) · 1.71 KB
/
login.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
<!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">
<title>LOG IN</title>
</head>
<body>
<div>
<h1>LOG IN</h1>
<p>Email-id</p>
<input type="email" placeholder="id@__.com">
<p>Password</p>
<input type="password">
<br>
<br>
<br>
<br>
<button type="submit">SUBMIT</button>
</div>
<style>
body{
color: black;
padding-left:5px;
margin-top: 100px;
margin-left:400px;
background-image: url(img.jpeg);
}
h1{
text-align: center;
}
button{
height:50px;
width:160px;
font-size: x-large;
margin-left:265px;
background-color: rgba(4, 158, 158, 0.651);
color:honeydew;
}
div{
background-color: honeydew;
border: 5px solid teal;
width:700px;
height:500px;
padding-left: 10px;
font-size: x-large;
color: rgba(3, 145, 145, 0.945);
}
input{
height: 30px;
color: rgba(3, 145, 145, 0.945);
font-size: x-large;
border-color: rgba(3, 145, 145, 0.945) ;
}
::placeholder{
color: rgba(3, 145, 145, 0.945);
}
@media screen and (max-width:400px){
body{
color: black;
padding-left:5px;
margin-top: 300px;
margin-left:3px;
background-image: url(img.jpeg);
}
}
</style>
</body>
</html>