-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
155 lines (150 loc) · 5.53 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Facebook – log in or sign up</title>
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="css/responsive.css">
<link rel="shortcut icon" type="image/x-icon" href="images/f.png">
</head>
<body>
<!--header start from here-->
<div class="header">
<div class="mid">
<div class="logo">
<img src="images/logo.png" alt="">
</div>
<div class="input-area">
<div class="input1">
<label for="ddddd">Email or Phone</label>
<input type="text" id="ddddd">
</div>
<div class="input2">
<label for="ppppp">Password</label>
<input type="password" id="ppppp">
<a href="#">Forgotten account?</a>
</div>
<div class="input3">
<input type="submit" value="Log In">
</div>
</div>
</div>
</div>
<!--header ends here-->
<!--facebook body starts from here -->
<div class="fb-body">
<div class="mid">
<div class="fb-left">
<h2><span>Facebook helps you connect and share with the<span people in your life.</h2>
<img src="images/1.png" alt="share-people">
</div>
<div class="fb-right">
<h1>Create an account</h1>
<p>It's quick and easy.</p>
<div class="reg-form">
<input type="text" placeholder="First name">
<input type="text" placeholder="Surname">
<input type="text" placeholder="Mobile number or email address">
<input type="password" placeholder="New password">
</div>
<div class="birthday">
<h3>Birthday</h3>
<select name="" id="">
<option value="">Day</option>
<option value=""></option>
<option value=""></option>
<option value=""></option>
<option value=""></option>
</select>
<select name="" id="">
<option value="">Month</option>
<option value=""></option>
<option value=""></option>
<option value=""></option>
<option value=""></option>
</select>
<select name="" id="">
<option value="">Year</option>
<option value=""></option>
<option value=""></option>
<option value=""></option>
<option value=""></option>
</select>
</div>
<div class="gender">
<h3>Gender</h3>
<input type="radio" id="fffff" name="gender"><label for="fffff">Female</label>
<input type="radio" id="mmmmm" name="gender"><label for="mmmmm" >Male</label>
<input type="radio" id="ccccc" name="gender"><label for="ccccc">Custom</label>
</div>
<div class="p1">
<p><span>By clicking Sign Up, you agree to our <a href="">Terms,</a> <a href="">Data Policy</a>and</span> <span><a href="">Cookie Policy.</a> You may receive SMS notifications from us and</span> can opt out at any time.</p>
</div>
<div class="button">
<input type="submit" value="Sign Up">
</div>
<div class="p2">
<p><a href="">Create a Page</a> for a celebrity, band or business.</p>
</div>
</div>
</div>
</div>
<!--facebook body ends here -->
<div class="footer">
<div class="mid">
<div class="top">
<ul>
<li class="active"><a href="#">English (UK)</a></li>
<li><a href="#">বাংলা</a></li>
<li><a href="#">অসমীয়া</a></li>
<li><a href="#">हिन्दी</a></li>
<li><a href="#">नेपाली</a></li>
<li><a href="#">Bahasa Indonesia</a></li>
<li><a href="#">العربية</a></li>
<li><a href="#">中文(简体)</a></li>
<li><a href="#">Bahasa Melayu</a></li>
<li><a href="#">Español</a></li>
<li><a href="#">Português (Brasil)</a></li>
<li><a href="#">+</a></li>
</ul>
</div>
<hr>
<div class="middle">
<ul>
<li><a href="#">Sign Up</a></li>
<li><a href="#">Log In</a></li>
<li><a href="#">Messenger</a></li>
<li><a href="#">Facebook Lite</a></li>
<li><a href="#">People</a></li>
<li><a href="#">Pages</a></li>
<li><a href="#">Page categories</a></li>
<li><a href="#">Places</a></li>
<li><a href="#">Games</a></li>
<li><a href="#">Locations</a></li>
<li><a href="#">Marketplace</a></li>
<li><a href="#">Groups</a></li>
<li><a href="#">Instagram</a></li>
<li><a href="#">Local</a></li>
<li><a href="#">Fundraisers</a></li>
<li><a href="#">Services</a></li>
<li><a href="#">About</a></li>
<li><a href="#">Create ad</a></li>
<li><a href="#">Create Page</a></li>
<li><a href="#">Developers</a></li>
<li><a href="#">Careers</a></li>
<li><a href="#">Privacy</a></li>
<li><a href="#">Cookies</a></li>
<li><a href="#">AdChoices</a></li>
<li><a href="#">Terms</a></li>
<li><a href="#">Help</a></li>
</ul>
</div>
<div class="bottom">
<span>Facebook © 2019</span>
</div>
</div>
</div>
</body>
</html>