Create Facebook login interface with Html + CSS very easy:
| pseudo tribe |
As we already know that many people want to learn HTML for web development any for many other use. we have made this website just for you so that yo you can learn ,any coding skills regarding subjects. in this page we have provided you the detail and tutorial for the Facebook login interface for web development or the other regarding purpose. If you want the code for it directly then copy the following code to your compiler to begin you tasks.
---------------------------------------------------------------------------------------------------------
<!DOCTYPE html>
<html>
<head>
<title>Facebook interfare for phishing attack part 1</title>
<style type="text/css">
fieldset{
background-color:#F8F8FF;
box-shadow:0px 0px 6px silver;
width:530px;
}
button{
border-radius:6px;
padding:0 16px;
width:395px;
height:48px;
}
a{
text-decoration:none;
color:#1877f2;
font-size:20px;
font-family:sans-serif;
}
#me{
font-size:17px;
padding:14px 16px;
width:355px;
}
</style>
</head>
<body>
<center>
<fieldset>
<center><h1 style="font-family:sans-serif;" ><big>Log in</big></h1></center>
<center><input type="text" name="text" placeholder="Username" id="me"></center>
<br>
<center><input type="password" name="password" placeholder="password" id="me"></center>
<br>
<center><button style="background-color:#1877f2; color:white; font-size: 20px;">Log in</button></center>
<br>
<input type="checkbox" name="checkbox"> <span style="font-family:sans-serif;">Remember me</span>
<a href="as your whish put whater link you want for linking">Forgot Password?</a>
</fieldset>
</center>
<br>
<center><a href="what ever you want">Create an account</a></center>
</body>
</html>
Post a Comment