-
Notifications
You must be signed in to change notification settings - Fork 0
/
example.html
56 lines (55 loc) · 1.54 KB
/
example.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
<!DOCTYPE html>
<html>
<head>
<title> Signin Template </title>
<style>
body{
background-color: rgb(245, 249, 253);
padding-top: 100px;
}
h1{
font-weight: 300;
}
#pic{
width: 80px;
margin-right:200px;
}
.in{
width:250px;
height: 50px;
border:0;
box-shadow: 0 0 0 1px lightgray;
}
#in1{
border-radius: 5px 5px 0 0;
}
#in2{
border-radius: 0 0 5px 5px;
}
#in3{
margin: 20px 0 20px 0;
}
#bt{
width: 250px;
height: 40px;
background-color: rgb(0, 106, 255);
border:0;
border-radius: 5px;
color:white;
font-size:medium;
}
#end{
margin-top: 50px;
}
</style>
</head>
<body>
<img id="pic" src="image.png"/>
<h1>Please sign in</h1>
<input class="in" id="in1" type="text" name="email" placeholder="Email address"/><br/>
<input class="in" id="in2" type="text" name="password" placeholder="Password"/><br/>
<input id="in3" type="checkbox" name="remember"/> Remember me<br/>
<button id="bt">Sign in</button>
<div id="end">© 2017-2024</div>
</body>
</html>