-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
30 lines (29 loc) · 1.7 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 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="src/input.css">
</head>
<body class="bg-gray-200 w-screen h-screen" >
<div class="container flex mx-auto items-center justify-center h-full">
<div class="left w-1/2">
<img class="w-72" src="https://static.xx.fbcdn.net/rsrc.php/y8/r/dF5SId3UHWd.svg" alt="">
<p class="text-3xl mx-8">Facebook helps you connect and share with the people in your life.</p>
</div>
<div class="right w-1/3" >
<div class="box flex flex-col w-1/1 bg-white p-4 rounded-xl shadow-lg">
<input class="px-4 py-2 my-3 border-2 border-gray-200 rounded-lg" type="text" placeholder="Email address or phone number" name="" id="">
<input class="px-4 py-2 my-3 border-2 border-gray-200 rounded-lg" type="password" placeholder="Password" name="" id="">
<button class="bg-blue-600 hover:bg-blue-700 py-3 font-bold text-white text-xl rounded-lg my-3">Log in</button>
<a href="#" class="text-center text-blue-500 text-sm my-2">Forgotten password?</a>
<hr class="my-2">
<button class="bg-green-600 hover:bg-green-700 w-fit text-white py-3 font-bold text-xl px-4 rounded-xl my-2 mx-auto">Create New Account</button>
</div>
<p class="text-center my-6 text-sm"><a class="font-bold" href="#">Create a Page</a> for a celebrity, brand or business.</p>
</div>
</div>
</body>
</html>