-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
35 lines (35 loc) · 1.26 KB
/
index.html
File metadata and controls
35 lines (35 loc) · 1.26 KB
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
35
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Codecademy Login Page Clone</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="container">
<div class="header">
<h1>Login to Codecademy</h1>
</div>
<form action="">
<label for="username">Email or Username</label>
<input type="text" id="username" name="username">
<label for="password">Password</label>
<input type="password" id="password" name="password">
<a href="#">I forgot my password</a>
<input type="submit" value="Login">
</form>
<div class="footer">
<h3>Login with another account</h3>
<div class="images">
<img src="image1.png" alt="Image 1">
<img src="image2.png" alt="Image 2">
<img src="image3.png" alt="Image 3">
<img src="image4.png" alt="Image 4">
<img src="image5.jpeg" alt="Image 5">
</div>
<a href="#">Not a member yet? <strong>Sign up free</strong></a>
</div>
</div>
</body>
</html>