-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
39 lines (38 loc) · 1.26 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
<!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="stylesheet" href="assets/styles/general.css">
<link rel="shortcut icon" type="image/x-icon" href="assets/images/logos/facebook.png" />
</head>
<body>
<main>
<div class="left">
<img src="assets/images/logos/facebook.svg" alt="Facebook logo">
<div class="left-title">
Facebook helps you connect and share with the people in your life.
</div>
</div>
<div class="right">
<div class="form-container">
<form class="right-form" action="">
<input type="text" value="" placeholder="Email address or phone number">
<input type="text" value="" placeholder="Password">
<button class="primary">Log in</button>
</form>
<div class="right-down">
<a href="#">Forgotten password?</a>
<hr>
<button class="secondary">Create New Account</button>
</div>
</div>
<div class="right-title">
<b>Create a Page</b> for a celebrity, brand or business.
</div>
</div>
</main>
</body>
</html>