-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
44 lines (42 loc) · 1.33 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
39
40
41
42
43
44
<!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="style.css">
<title>Khan Academy</title>
</head>
<body>
<header class="container">
<nav>
<a href="#">Courses</a>
<form action="">
<input type="text" placeholder="Search" class="text">
</form>
<h3><img src="img/KhanAcademy.png" alt="Khan" class="img"> Khan Academy</h3>
<ul>
<li><a href="#">Donate</a></li>
<li><a href="#">Login</a></li>
<li><a href="#">Signup</a></li>
</ul>
</nav>
</header>
<div class="container">
<div>
<img src="img/KhanPeople.png" alt="People">
</div>
<div>
<h1>For Every student, every classroom. Real results.</h1>
<p>We're a nonprofit with the mission to provide a free, world-class education for anyone, anywhere.</p>
<button>Learners</button>
<button>Teachers</button>
<button>Districts</button>
<button>Parents</button>
</div>
</div>
<footer>
<h1>Why Khan Academy works</h1>
</footer>
</body>
</html>