-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathfacebook.html
56 lines (50 loc) · 1.88 KB
/
facebook.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 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>Document</title>
</head>
<body>
<h1>FaceBook</h1>
<h3>Facebook helps you connect and share with the people in your life.</h3>
<h3>Sign up. It's free, and always will be.</h3>
<h1>Sign Up</h1>
<p>It's quick and easy</p>
<form>
<input type="text" name="fname" id="" placeholder="First name" />
<br />
<input type="text" name="lname" id="" placeholder="Surname" />
<br />
<input type="text" name="" id="" placeholder="Mobile number or email address" />
<br />
<input type="text" name="" id="" placeholder="Re-enter email address" />
<br />
<input type="password" name="" id="" placeholder="New password" />
<br />
<label for="dob">Date of Birth</label>
<br />
<input type="date" name="" id="" />
<br />
<label for="age">Age</label>
<br />
<input type="number" placeholder="Your age" />
<br />
<label for="gender">Gender</label>
<br />
<input type="radio" name="gender" /> Male
<input type="radio" name="gender" id="" /> Female
<input type="radio" name="gender" id="" /> Other
<br />
<button type="submit">Sign Up</button>
<br />
<br />
<p>
People who use our service may have uploaded your contact information to Facebook.
</p>
<p>By clicking Sign Up, you agree to our Terms, Privacy Policy and Cookies Policy. You may receive SMS notifications from us and can opt out at any time.</p>
<p>Already have an account?</p>
</form>
</body>
</html>