-
Notifications
You must be signed in to change notification settings - Fork 0
/
SignUp.html
67 lines (61 loc) · 3.24 KB
/
SignUp.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
<!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>Sign Up</title>
<link rel="stylesheet" href="style.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@300;400&display=swap" rel="stylesheet">
</head>
<body>
<div class="main-left">
<h1 class="heading1">facebook</h1><br>
<h2 class="heading2">Facebook helps you connect and share<br>
with the people in your life.</h2>
</div>
<div class="main-right">
<h1 class="line1">Sign Up</h1>
<h3 class="line2">It's quick and easy.</h3>
<div class="signupDivider">
<form action="" class="form">
<input type="text" class="FirstName" placeholder="First Name">
<input type="text" class="LastName" placeholder="Last Name"><br>
<input type="text" class="MobNo" placeholder="Mobile number or email address "><br>
<input type="password" class="password" placeholder="New password">
<h5 class="heading51">Date of birth?<br></h5>
<select name="dob" id="dob" class="dob">
<option value="1">1</option>
<option value="2">2</option>
<option value="3">3</option>
<option value="4">4</option>
<option value="5">5</option>
</select>
<select name="month" id="month" class="month">
<option value="jan">Jan</option>
<option value="Feb">Feb</option>
<option value="Mar">Mar</option>
<option value="Apr">Apr</option>
<option value="May">May</option>
</select>
<select name="year" id="year" class="year">
<option value="2022">2022</option>
<option value="2021">2021</option>
<option value="2020">2020</option>
<option value="2019">2019</option>
<option value="2018">2018</option>
</select>
<h5 class="heading52">Gender?<br></h5>
<span class="gender-radio-btn"><input type="radio" name="Gender[]" value="Female" class="Female">Female</span>
<span class="gender-radio-btn"><input type="radio" name="Gender[]" value="Male" class="Male">Male</span>
<span class="gender-radio-btn"> <input type="radio" name="Gender[]" value="Custom" class="Custom">Custom</span>
<p class="p">By clicking Sign Up, you agree to our Terms, Data Policy and Cookie Policy. You<br>
receive SMS notifications from us and can opt out at any time.</p>
<button class="signUpButton">Sign Up</button>
</form>
</div>
</div>
</body>
</html>