<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Facebook</title>
<style>
*{
padding:0px;
margin:0px;
box-sizing: border-box;
font-family: Arial, Helvetica, sans-serif;
}
.top{
height:100vh;
border:1px solid grey;
display: grid;
grid-template-columns:1fr 1fr;
}
.left{
border:1px solid grey;
}
.right{
border:1px solid grey;
padding-left: 50px;
display: flex;
flex-direction: column;
justify-content: space-around;
}
.bottom{
border:1px solid grey;
width:100%;
}
h3{
width: 90%;
text-align: center;
margin-bottom: 30px;
}
#one{
padding-top: 150px;
}
input{
width: 90%;
height:10%;
border: 2px solid grey;
border-radius: 25px;
font-size: large;
}
button{
color: white;
background-color: blue;
width: 90%;
height:10%;
border: 2px solid grey;
border-radius: 25px;
font-size: large;
font-weight: bolder;
}
p{
text-align: center;
}
#last{
color:blue;
background-color: white;
font-weight: bolder;
}
#image{
margin-left: 42%;
}
</style>
</head>
<body>
<div class="top">
<div class="left">
<img src="fb1.png" alt="Facebook image" width="100%" height="100%">
</div>
<div class="right">
<h2 id="one">Log in to Facebook</h2>
<input type="text" placeholder=" Email address or mobile number"><br>
<input type="password" placeholder=" Password"><br>
<button>Log in</button><br>
<h3>Forget Password ?</h3>
<button id="last">Create new account</button>
<img id="image" src="meta.png" alt="ak" width="39px" height="39px">
</div>
</div>
<div class="bottom">
<footer>
<p style="color: blue;">English (UK) தமிழ் తెలుగు ಕನ್ನಡ हिन्दी മലയാളം More languages…Sign up Log in Messenger Facebook Lite Video Meta PayMeta Store Meta Quest Ray-Ban Meta Meta AI Instagram Threads Privacy Policy Privacy Centre About Create ad Create Page Developers Careers Cookies AdChoices Terms Help Contact uploading and non-users Meta © 2026</p>
</footer>
</div>
</body>
</html>
Output:

Top comments (0)