-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
27 lines (27 loc) · 1.76 KB
/
Copy pathindex.html
File metadata and controls
27 lines (27 loc) · 1.76 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="./style.css" rel="stylesheet">
<link rel="icon" href="favicon.png">
<title>Facebook.com</title>
</head>
<body class="bg-gray-100">
<div class="container mt-48 flex mx-auto">
<div class="left ml-[3rem] md:ml-[11rem] relative md:static">
<img class=" absolute md:static w-40 -mt-[9rem] md:mt-0 md:w-72" src="./fb.svg" alt="fb_img">
<p class=" text-sm w-full md:text-3xl -mt-[6rem] md:mt-0 md:mx-6 md:w-[60%] font-semibold">Facebook helps you connect and share with the people in your life</p>
</div>
<div class="right flex flex-col bg-white p-9 items-center justify-center rounded-lg relative w-[24rem] md:w-[25rem] -ml-[16rem]">
<input class="border border-gray-400 outline-blue-400 m-1 w-[17rem] md:w-[21rem] h-11 rounded-md p-2" type="text" placeholder="Email adress or phone number">
<input class="border border-gray-400 outline-blue-400 m-1 w-[17rem] md:w-[21rem] h-11 rounded-md p-2" type="password" placeholder="Password">
<button class="bg-blue-500 my-6 text-white w-1/2 md:w-full m-2 p-3 rounded-lg font-semibold text-xl hover:bg-blue-600 ">Log In</button>
<span class="text-blue-500 -mt-5 cursor-pointer hover:underline">Forgotten Password?</span>
<hr >
<button class="my-6 bg-green-500 text-white rounded-md p-3 font-semibold hover:bg-green-600 text-xl">Create New Account</button>
<span class="text-sm absolute -bottom-9"> <span class="font-bold hover:underline cursor-pointer">Create a Page</span> for a celebrity, brand or business.</span>
</div>
</div>
</body>
</html>