to create a interface of a loginpage
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport"content="width=device-width, intial-scale=1.0">
<title>login formin html and css | codehal</title>
<link rel="stylesheet" href="style.css">
<body>
<div class="wrapper">
<form action="">
<h1> login</h1>
<div class="input box">
<input type="text" placeholder="Username"required>
<div class="input box">
<input type="password" placeholder="password"required>
</div>
<div class="remember-forget">
<label><input type="checkbox"> Remember me</label>
<a href="#">Forget password?</a>
</div>
<button type="submit" class="btn">login</button>
<div class="register link">
<p> Dont have an account? <a href="#"> register</a></p>
</div>
</div>
</form>
</div>
</body>
</head>
</html>