-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
40 lines (35 loc) · 1.84 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
<!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">
<link rel="stylesheet" href="styles.css">
<link rel="shortcut icon" type="image/jpg" href="favicon.png" />
<title>Facebook - Log in or sign up</title>
</head>
<body class="bg-gray-200">
<div class="container mt-40 flex mx-auto items-center justify-center">
<div class="left w-1/3 mx-14">
<img src="fbLogo.svg" class="w-80" alt="">
<p class="text-3xl mx-8">Facebook helps you connect and share with the people in your life.</p>
</div>
<div class="right flex flex-col bg-white p-8 shadow-2xl rounded-xl w-1/4 text-lg relative">
<input type="text" placeholder="Email address or phone number"
class="px-4 h-12 my-2 border border-1 border-gray-200 rounded-lg outline-blue-600">
<input type="password" class="px-4 h-12 my-2 border border-1 border-gray-200 rounded-lg outline-blue-600"
placeholder="Password" id="">
<button class="bg-blue-600 text-white my-2 py-3 rounded-md font-bold cursor-pointer hover:bg-blue-700 "> Log
In</button>
<span class="text-blue-600 text-center text-sm my-2 cursor-pointer hover:underline ">Forgotten
password?</span>
<hr class="my-2">
<button
class="bg-green-600 text-white my-2 py-3 rounded-md cursor-pointer w-fit px-4 mx-auto hover:bg-green-700">Create
New Account</button>
<span class="sp absolute -bottom-12 text-sm "><span class="font-bold hover:underline cursor-pointer">Create
a Page</span> for a celebrity, brand or business.</span>
</div>
</div>
</body>
</html>