-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathproject.html
26 lines (25 loc) · 848 Bytes
/
project.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
<!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</title>
<link rel = "stylesheet" type = "text/css" href="projectstyle.css">
</head>
<body>
<div class = "loginbox">
<img src = "avatar.jpg" alt="avatar's image" class="avatar">
<h1>Login Here</h1>
<form>
<p>Username</p>
<input type="text" name="" placeholder="Enter Username">
<p>Password</p>
<input type="password" name="" placeholder="Enter Password">
<input type="submit" value="Login">
<a href="#">Lost Your Password?</a><br>
<a href="#">Don't have an account? SIGNUP NOW!</a>
</form>
</div>
</body>
</html>