Create Login Page Like Twitter || Twitter login page clone || twitter clone html, css - Creation Code
Twitter:
Twitter is an American microblogging and social networking service on which users post and interact with messages known as "tweets". Registered users can post, like, and retweet tweets, but unregistered users can only read those that are publicly available. Users interact with Twitter through browsers or mobile frontend software, or programmatically via its APIs. Prior to April 2020, services were accessible via SMS. The service is provided by Twitter, Inc., a corporation based in San Francisco, California, and has more than 25 offices around the world. Tweets were originally restricted to 140 characters, but the limit was doubled to 280 for non-CJK languages in November 2017. Audio and video tweets remain limited to 140 seconds for most accounts.
We are going to build the login clone with HTML and CSS
HTML:
<!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">
<link rel="stylesheet" href="style.css">
<title>twitter</title>
</head>
<body>
<div class="container">
<div class="box box-one">
<i class="fab fa-twitter"></i>
<button>
<img src="kisspng-google-logo-g-suite-google-5ab6f1f0b9e059.9680510615219389287614.jpg" width="19"/>
<span>Sign in with Google</span>
</button>
<button>
<img src="download.png" width="20"/>
<span>Sign in with Apple</span>
</button>
<div>
<h5>Or</h5>
<div class="box box-two">
<form>
<input type="text" placeholder="Phone,email,or username"/>
</form>
<button class="next-btn">Next</button>
<button>Forgot password</button>
</div>
<p>Don't have an account? <a href="#">Sign up</a></p>
</div>
</div>
</div>
</body>
</html>
CSS:
*{
margin: 0;
padding: 0;
box-sizing: border-box;
}
body{
background-color: rgb(219, 217, 217);
}
.container{
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%,-50%);
background: #fff;
width: 450px;
height: 550px;
border-radius: 10px;
box-shadow: 0 10px 20px rgb(110, 110, 110,.2);
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
font-family: 'Poppins', sans-serif;
}
.box , .box button{
display: flex;
align-items: center;
}
.box{
width: 300px;
height: 240px;
flex-direction: column;
justify-content: space-evenly;
}
.box button{
width: 300px;
height: 40px;
background-color: #fff;
outline: none;
font-weight: bold;
border: 1px solid rgb(211, 210, 210);
border-radius: 20px;
justify-content: center;
font-family: "Poppins", sans-serif;
}
.box-one button span{
display:block;
width: 130px;
text-align: left;
}
.box-one button img{
margin: 0 .5rem;
}
.box-one i{
color: #00acee;
font-size: 1.8rem;
}
.box-two input{
position: relative;
width: 300px;
height: 55px;
outline: none;
border: 1px solid rgb(211, 210, 210);
border-radius: 4px;
padding-left: 10px;
}
.box-two input label{
position: absolute;
top: 0;
}
.box-two input::placeholder{
font-size: 1rem;
}
.box-two input:focus{
border: 2px solid #00acee;
}
.box-two .next-btn{
background-color: #121212;
color: #fff;
}
.container p{
font-size: 1rem;
color: rgb(138, 136, 136);
}
.container p a{
text-decoration: none;
color: #00aecc;
}
Comments
Post a Comment