Login Form with Source Code:


This is the third class and in this class we will study about <input> tag.
  • This tag is most commonly used in almost all websites for login.
  • You must have seen this type of sites which have login form as shown but in this form i did not use the CSS. So it is simple Form as shown.
  • I have also used placeholder which show hint inside the input tag as shown above.
  • Below is the coding of this tag take it and practice from that and create your own form like this also share with me. Thanks 
/*---------------------Login Form----------------------------------*/
<!DOCTYPE html>
<html>
<head>
<title>Login Form</title>
</head>
<body>
Email     
<input type="Email" placeholder="Enter Your Email"><br><br>
Password
<input type="password" placeholder="Enter your password"><br><br>
<button>Submit</button><br><br>
</body>
</html>

/*---------------------Login Form----------------------------------*/