<!DOCTYPE HTML> <html lang="en"> <head> <meta charset="UTF-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Login Form in HTML</title> <link rel="stylesheet" href="style.css"> </head> <body> <img src="enhanced_image_1.jpg" alt="this is photo" width="200"> <h1>Login Page</h1> <form> <label>Username</label> <input type="text" placeholder="Enter your username"> <br><br> <label>Password</label> <input type="password" placeholder="Enter your password"> <br><br> <input type="submit" value="Login"> </form> <ul> <li><a href="#">Forget password?</a></li> <li><a href="#">Create a new account</a></li> </ul> </body> </html>
Login Page
Username