-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
30 lines (30 loc) · 1.85 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Facebook - log in or sign up</title>
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="icon" type="image/png" href="./assets/favicon.png">
<link rel="stylesheet" href="./index.css">
</head>
<body class="bg-gray-100">
<div class="container mt-20 flex mx-auto items-center justify-center">
<div class="left w-1/2 mx-14">
<img class="w-80 " src="./assets/facebook.svg" alt="">
<p class="text-3xl mx-8">Facebook helps you connect and share<br> with the people in your life.</p>
</div>
<div class="right flex flex-col bg-white p-8 rounded-xl w-1/3 text-lg relative">
<input class="px-4 h-12 my-2 border border-1 outline-blue-400 border-gray-400 rounded-lg" type="text" placeholder="Email address or Phone number">
<input class="px-4 h-12 my-2 border border-1 outline-blue-400 border-gray-400 rounded-lg" type="password" placeholder="Password">
<button class="bg-blue-600 hover:bg-blue-700 text-white my-2 py-3 rounded-md font-bold text-xl">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-500 hover:bg-green-600 text-white my-2 py-3 px-4 mx-auto rounded-md font-bold text-xl w-fit">Create New Account</button>
<span class="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>