-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
125 lines (106 loc) · 2.98 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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Facebook Login Page</title>
<style>
#container {
margin: 10% 300px;
}
#box1 {
margin: 0px 75px 0px 40px;
}
#span1 {
color: rgb(30, 120, 220);
font-size: 2.5em;
font-weight: 550;
text-shadow: 1px 1px 1px rgb(30, 120, 220);
display: block;
margin-bottom: 10px;
font-family: helvetica, arial, sans-serif;
}
#span2 {
display: block;
}
#paragraph1 {
color: black;
}
#box2 {
width: 300px;
min-height: 300px;
background-color: white;
box-shadow: -2px 2px 5px rgb(180, 180, 180);
border-radius: 10px;
position: relative;
top: 95px;
}
div {
display: inline-block;
}
#box2 .boxes {
width: 250px;
height: 30px;
padding: 5px;
outline: none;
border-radius: 5px;
margin: 10px 20px;
border: none;
}
#box2 .boxes:hover {
border-bottom: 1px solid palevioletred;
}
#box2 .boxes:focus {
border: 1px solid red;
}
#fpassword {
display: block;
}
input[type="button"] {
background-color: rgb(30, 120, 220);
color: white;
height: 40px;
border-radius: 5px;
width: 260px;
padding: 5px;
margin: 10px 20px;
border: none;
}
#fpassword {
color: rgb(70, 150, 250);
;
text-align: center;
margin-bottom: 40px;
}
button {
width: 160px;
height: 40px;
border: none;
outline: none;
padding: 5px;
background-color: rgb(0, 180, 0);
color: white;
border-radius: 5px;
font-weight: bold;
font-size: 13px;
margin: 0 22%;
}
</style>
</head>
<body>
<div id="container">
<div id="box1">
<p id="paragraph1">
<span id="span1">facebook</span>
<span>Connect with friends and the world </span><span id="span2">around you on facebook </span>
</p>
</div>
<div id="box2">
<input type="email" name="email" id="email" placeholder="Email or phone number" class="boxes">
<input type="password" name="password" id="password" placeholder="Password" class="boxes">
<input type="button" name="button" id="button" value="Login">
<span id="fpassword">Forgot password?</span>
<button>Create new account</button>
</div>
</div>
</html>