-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
131 lines (98 loc) · 4.9 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<link rel="stylesheet" href="style.css" type="text/css">
</head>
<body>
<div class="container">
<div class="header">
<div class="logo">
<a class="logo-text" href="index.html">facebook</a>
</div>
<div class="login">
<form action="">
<table class="login-controls">
<tr>
<td><label class="login-label">Email or Mobile</label></td>
<td><label class="login-label">Password</label></td>
</tr>
<tr>
<td><input type="text"></td>
<td><input type="text"></td>
<td><input class="submit-btn" type="submit" value="Login"></td>
</tr>
<tr>
<td></td>
<td><a class="forget-acc" href="forgotten.html">Forgotten Account ?</a></td>
</tr>
</table>
</form>
</div>
</div>
<div class="main-body">
<div class="left-section">
<p class="para">facebook Help You to connect and Share with the <br> People in Your life</p>
<img class="image" src="fbimage.png" alt="">
</div>
<div class="right-section">
<h1>Create an Account</h1>
<h4>Its Quick and Easy</h4>
<div class="sign-up Controls">
<form action="" id="signup-form">
<div class="signup-fieldname">
<input name="fname" class="field" type="text" placeholder="First Name">
<input name="sname" class="field" type="text" placeholder="Sur Name">
</div>
<div class="signup-email">
<input name="email" class="email-field" type="text" placeholder="Email">
</div>
<div class="signup-password">
<input name="password" class="password-field" type="text" placeholder="Password">
</div>
<br>
<label class="grey">Birthday</label><br><br>
<select class="date" name="day" id="">
<option value="">Day</option>
<option value="1">1</option>
<option value="2">2</option>
<option value="3">3</option>
</select>
<select class="date" name="month" id="">
<option value="">Month</option>
<option value="">January</option>
<option value="">February</option>
</select>
<select class="date" name="year" id="">
<option value="">Year</option>
<option value="">1998</option>
<option value="">1999</option>
<option value="">2000</option>
</select>
<br><br>
<label class="grey">Gender</label><br><br>
<input name="gender" type="radio" id="male" name="gender" value="male">
<label for="male">Male</label>
<input name="gender" type="radio" id="female" name="gender" value="female">
<label for="female">Female</label>
<input name="gender" type="radio" id="other" name="gender" value="other">
<label for="other">Other</label>
<p class="policy">By clicking Sign Up, you agree to our Terms, Data Policy and Cookie Policy.
You may receive SMS notifications from us and can opt out at any time.</p>
<input class="sign-btn" type="button" value="Sign up">
<br>
<br>
</form>
</div>
<a class="page" href="">Create a Page</a> for celebraity , Brand or Bussiness</p>
</div>
</div>
</div>
<script src="https://code.jquery.com/jquery-3.5.1.js" integrity="sha256-QWo7LDvxbWT2tbbQ97B53yJnYU3WhH/C8ycbRAkjPDc=" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/jquery.validate.js"></script>
<script src="script.js">
</script>
</body>
</html>