-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
38 lines (34 loc) · 1.11 KB
/
index.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
35
36
37
38
<!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>codeacademy login page clone</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="container"></div>
<div class="header"></div>
<h1>Login to Codeacademy</h1>
<form action="">
<label for="">Email or username</label>
<input type="text" name="" id="">
<label for="">password</label>
<input type="password" name="" id="">
<a href="#">i forgot my password</a>
<input type="submit" value="Log In">
</form>
<div class="footer">
<h3>Log in with another account</h3>
<div class="images">
<img src="image 1.png" alt="">
<img src="image 2.png" alt="">
<img src="image 3.png" alt="">
<img src="image 4.png" alt="">
<img src="image 5.jpg" alt="">
</div>
<a href="#">Not a member yet?<strong>Sign up free</strong> </a>
</div>
</body>
</html>