-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
64 lines (47 loc) · 2.08 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
<!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</title>
<link rel="stylesheet" href="style.css" />
</head>
<body class="">
<div class="main flex flex-row justify-around bg-[#F0F2F5] h-[100vh] items-center px-36">
<div class="left h-[350px] flex flex-col w-[50%]">
<p class="text-[#1877F2] text-6xl font-bold my-5">
facebook
</p>
<p class="text-3xl">
Facebook helps you connect and share with the people in your life.
</p>
<p>
designed by Saim.
</p>
</div>
<div class="right flex flex-col justify-center items-center">
<div
class="right-top bg-white flex flex-col w-[400px] h-[350px] justify-start items-center rounded-md shadow-xl">
<input class="w-[90%] p-3 mt-4 rounded-md border border-1 outline-[#1877F2]" type="text" name="" id=""
placeholder="Email address or phone number" />
<input class="w-[90%] p-3 mt-4 rounded-md border border-1 outline-[#1877F2]" type="password" name=""
id="" placeholder="Password" />
<button
class="bg-[#1877F2] text-white p-3 mt-4 rounded-md w-[90%] align-text-center font-bold hover:bg-[#1470e9]">
Log In
</button>
<p class="m-3 text-[#1877F2]">Forgotten account?</p>
<hr class="w-[95%] m-2">
<button class="bg-[#36A420] text-white font-bold p-3 mt-3 rounded-md hover:bg-[#318b1f]">
Create A New Account
</button>
</div>
<div class="right-bottom flex flex-row mt-5">
<a href="/" class="no-underline font-bold mr-1">Create a Page</a>
<p>for a celebrity, brand or business.</p>
</div>
</div>
</div>
</body>
</html>