-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathQ6.html
34 lines (30 loc) · 979 Bytes
/
Q6.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
27
28
29
30
31
32
33
34
<!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">
<link rel="stylesheet" href="Q6.css">
<title>Document</title>
</head>
<body>
<div class="box">
<img class="l-img" src="imgs/icons8-login-96.png" alt="login">
<h2>LOGIN</h2>
<div class="input-box">
<div class="first-input"><img class="user" src="imgs/icons8-user-96.png" alt="adamk"><input type="text"
placeholder="user name"></div>
<div class="second-input">
<img class="pass" src="imgs/icons8-lock-96.png" alt="lock">
<input type="text" placeholder="password">
</div>
<div class="remember">
<input type="checkbox" name="tik" id="1">
<label for="1">Remember me</label>
</div>
</div>
<button><strong>login</strong></button>
<a href="">Forgot password?</a>
</div>
</body>
</html>