<!DOCTYPE html>
<html>
  <head>
    <title>Login Form </title>
    <link rel="stylesheet" href="styles.css"/>
  </head>
  <body>
      <h2> Login Page </h2><br>
      <div class="Login">
        <form id="login" method="get" action="login.php">
          <label><b> Enter Your Name </b></label>
          <input type="text" name="Uname" id="Uname" placeholder="Enter Your Name">
          <br></br>
          <label><b> Password </b></label>
          <input type="password" name="pass" id="pass" placeholder="password">
          <br><br>
          <input type="button" name="log" id="log" value="Log in Here">
          <br><br>
          <input type="chekbox" id="chekbox">
          <span>Remember me </span>
          <br><br>
          Forget <a href="#">password</a>
        </form>
     </div>
  </body>
</html>