-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
126 lines (119 loc) · 4.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
<!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>Facebook - log in or sign up</title>
<link rel="shortcut icon" href="./images/favicon.ico" type="image/x-icon">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css" />
<link rel="stylesheet" href="./style.css">
</head>
<body>
<section id="main">
<div class="main-wrapper">
<div class="left-col">
<div>
<img src="./images/logo.svg" alt="facebook logo" id="logo">
</div>
<div>
<h1 class="message">
Facebook helps you connect and share with the people
in your life.
</h1>
</div>
</div>
<div class="right-col">
<div class="form-wrapper">
<form class="login">
<div class="email-wrapper">
<input type="text" name="email" id="email" placeholder="Email address or phone number"
autofocus />
</div>
<div class="password-wrapper">
<input type="password" name="password" id="password" placeholder="Password" />
<i class="far fa-eye-slash" id="password-toggle"></i>
</div>
<div class="login-btn-wrapper">
<input class="login-btn" type="button" value="Log In" />
</div>
</form>
<div class="forgot-pass">
<a href="#">Forgotten password?</a>
</div>
<div>
<hr />
</div>
<div class="create-account">
<a href="#"> Create New Account </a>
</div>
</div>
<div class="create-page">
<p>
<a href="#">Create a Page</a> for a celebrity, band or business.
</p>
</div>
</div>
</div>
</section>
<footer>
<div class="languages">
<span>English (UK)</span>
<a href="#">हिन्दी</a>
<a href="#">اردو</a>
<a href="#">ಕನ್ನಡ</a>
<a href="#">മലയാളം</a>
<a href="#">తెలుగు</a>
<a href="#">தமிழ்</a>
<a href="#">मराठी</a>
<a href="#">ગુજરાતી</a>
<a href="#">বাংলা</a>
<a href="#">ਪੰਜਾਬੀ</a>
<a href="#" class="add-lang"><i class="fas fa-plus"></i></a>
</div>
<div>
<hr />
</div>
<div class="pages">
<a href="#">Sign Up</a>
<a href="#">Log In</a>
<a href="#">Messenger</a>
<a href="#">Facebook Lite</a>
<a href="#">Watch</a>
<a href="#">People</a>
<a href="#">Pages</a>
<a href="#">Page categories</a>
<a href="#">Places</a>
<a href="#">Games</a>
<a href="#">Locations</a>
<a href="#">Marketplace</a>
<a href="#">Facebook Pay</a>
<a href="#">Groups</a>
<a href="#">Jobs</a>
<a href="#">Oculus</a>
<a href="#">Portal</a>
<a href="#">Instagram</a>
<a href="#">Local</a>
<a href="#">Fundraisers</a>
<a href="#">Services</a>
<a href="#">Voting Information Centre</a>
<a href="#">About</a>
<a href="#">Create ad</a>
<a href="#">Create Page</a>
<a href="#">Developers</a>
<a href="#">Careers</a>
<a href="#">Privacy</a>
<a href="#">Cookies</a>
<a href="#">
AdChoices
<img src="./images/adchoices.svg" style="width: 13px; vertical-align: -2px" />
</a>
<a href="#">Terms</a>
<a href="#">Help</a>
</div>
<p class="copyright">Meta © <span id="current-year"></span></p>
</footer>
<!-- Scripts -->
<script src="./script.js"></script>
</body>
</html>