-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfakebook.html
35 lines (33 loc) · 1.43 KB
/
fakebook.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Fakebook</title>
<link rel="stylesheet" href="./fakebook.css">
</head>
<body>
<div class="bg">
<div class="logo">
<div>
<img src="./fakebook.svg">
</div>
<div class="desc">
<p>Facebook helps you connect and share with the people in your life.</p>
</div>
</div>
<div class="login">
<form class="shadow-lg">
<input type="email" class="form-control mt-4" placeholder="Email Address">
<input type="password"class="form-control mt-3" placeholder="Password">
<button class="btn login-btn btn-primary mt-3" style="width: 100%;">Log In</button>
<a class="mt-3">Forgot Password?</a>
<hr class="mt-3" style="border-color: grey; background-color: grey; width: 100%; height: 2px;">
<button class="btn acc-btn btn-success mt-3">Create a new account</button>
</form>
<p>Create a Page for a celebrity, brand or business.</p>
</div>
</div>
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-T3c6CoIi6uLrA9TneNEoa7RxnatzjcDSCmG1MXxSR1GAsXEV/Dwwykc2MPK8M2HN" crossorigin="anonymous">
</body>
</html>