Login Page Creation with help of HTML without CSS


vasanth

This code is generated using HTML only(இந்த code HTML மட்டும் பயன்படுத்தி உருவாக்கப்பட்டுள்ளது)


<!DOCTYPE html>
<html lang="en">
  <head>
   
    <title>vasanth</title>
   

    <link rel="stylesheet" href="login.css.css" />
  </head>
  <body>
    <div class="login_form_container">
      <div class="login_form">
        <h2>Login</h2>
        <div class="input_group">
          <i class="fa fa-user"></i>
          <input
            type="text"
            placeholder="Username"
            class="input_text"
            autocomplete="off"
          />
        </div>
        <div class="input_group">
          <i class="fa fa-unlock-alt"></i>
          <input
            type="password"
            placeholder="Password"
            class="input_text"
            autocomplete="off"
          />
        </div>
        <div class="button_group" id="login_button">
          <a>Submit</a>
        </div>
        <div class="fotter">
          <a>Forgot Password ?</a>
          <a>Singn Up</a>
        </div>
      </div>
    </div>
  </body>
</html>




Comments