-
Notifications
You must be signed in to change notification settings - Fork 0
/
JS-task6.html
31 lines (31 loc) · 1.18 KB
/
JS-task6.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="JS-task6.css">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Pacifico">
<title>JS Task-6</title>
</head>
<body>
<div class="container">
<div class="login-box">
<span class="instagram-text">Instagram</span>
<form action="#">
<input type="text" placeholder="Username" class="input-field">
<input type="password" placeholder="Password" class="input-field">
<button type="submit" class="login-button">Log In</button>
<div class="remember-forgot">
<label for="remember-me">
<input type="checkbox" id="remember-me"> Remember Me
</label>
<a href="#" class="forgot-password">Forgot Password?</a>
</div>
</form>
</div>
<div class="signup-box">
<p>Don't have an account? <a href="#">Sign up</a></p>
</div>
</div>
</body>
</html>