-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
243 lines (150 loc) · 6.81 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
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
<!DOCTYPE html>
<head>
<title>Welcome To Facebook</title>
<link rel="icon" href="Images/Icon.jpg">
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="top">
<h1 id="facebook">facebook</h1>
<div class="login">
<table cellspacing="5px">
<tr>
<td>E-Mail or Phone</td>
<td>Password</td>
</tr>
<tr>
<td>
<input id="e-mail" type="text">
</td>
<td>
<input id="password" type="password">
</td>
<td>
<button id="log-in">Log In</button>
</td>
</tr>
<tr>
<td>
<input id="checkbox" type="checkbox">
<label id="logged-in" for="checkbox">Keep Me Logged In</label>
</td>
<td>
<a href="" id="forgot-password">
<span>Forgot Your Password?</span>
</a>
</td>
</tr>
</table>
</div>
</div>
<div class="main-box">
<div class="box-1">
<h1>Connect with the friends and the world around you on Facebook.</h1>
<div class="points">
<p><b>See photos and updates</b> from friends and News Feed</p>
<p><b>Share what's new</b> in your life on your timeline</p>
<p><b>Find more</b> of what you are looking for with graph search</p>
</div>
</div>
<div class="box-2">
<h1>Sign Up</h1>
<p id="free">It's Free And Always Be!</p>
<div class="inputs">
<input type="text" id="first-name" placeholder="First Name">
<input type="text" id="second-name" placeholder="Second Name"> <br>
<input type="text" id="e-mail-or-phone-number" placeholder="E-Mail or Phone Number"> <br>
<input type="text" id="re-enter" placeholder="Re-Enter E-Mail or Phone Number"> <br>
<input type="password" id="new-password" placeholder="New Password">
</div>
<div class="birthday-box">
<p><b>Birthday</b></p>
<div class="birthday">
<div class="choose-date">
<select id="day">
<option disabled selected>Day</option>
<option>01</option>
<option>02</option>
<option>03</option>
<option>04</option>
<option>05</option>
<option>06</option>
<option>07</option>
<option>08</option>
<option>09</option>
<option>10</option>
<option>11</option>
<option>12</option>
<option>13</option>
<option>14</option>
<option>15</option>
<option>16</option>
<option>17</option>
<option>18</option>
<option>19</option>
<option>20</option>
<option>21</option>
<option>22</option>
<option>23</option>
<option>24</option>
<option>25</option>
<option>26</option>
<option>27</option>
<option>28</option>
<option>29</option>
<option>30</option>
<option>31</option>
</select>
<select id="month">
<option disabled selected>Month</option>
<option>January</option>
<option>February</option>
<option>March</option>
<option>April</option>
<option>May</option>
<option>June</option>
<option>July</option>
<option>August</option>
<option>September</option>
<option>October</option>
<option>November</option>
<option>December</option>
</select>
<select id="year">
<option disabled selected>Year</option>
<option>2011</option>
<option>2010</option>
<option>2009</option>
<option>2008</option>
<option>2007</option>
<option>2006</option>
<option>2005</option>
<option>2004</option>
<option>2003</option>
<option>2002</option>
<option>2001</option>
<option>2000</option>
</select>
</div>
<div>
<a href="">
<span>Why do I need to provide my birthday?</span>
</a>
</div>
</div>
</div>
<div class="gender">
<input type="radio" name="abc" id="male">
<label for="male"><b>Male</b></label>
<input type="radio" name="abc" id="female">
<label for="female"><b>Female</b></label>
</div>
<p>By clicking Sign Up, you agree to our <a href="">Terms And Conditions</a> and that you have read our <a
href="">Data Use Policy</a>, including our <a href="">Cookie Use Policy</a>.</p>
<button id="sign-up">Sign Up</button>
<hr>
<p id="create-page"><a href="">Create A Page</a> for a celebrity, brand or business.</p>
</div>
</div>
</body>
</html>