generated from JoinCODED/TASK-Template
-
Notifications
You must be signed in to change notification settings - Fork 218
/
Copy pathindex.html
27 lines (21 loc) · 877 Bytes
/
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
<!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="https://www.w3schools.com/w3css/4/w3.css">
<title>CSS challenge</title>
</head>
<body>
<!-- NAV BAR - DON'T TOUCH ME -->
<div class="w3-bar w3-black">
<a href="/index.html" class="w3-bar-item w3-button">Home</a>
<a href="/challenge1/index.html" class="w3-bar-item w3-button">challenge 1</a>
<a href="/challenge2/index.html" class="w3-bar-item w3-button">challenge 2</a>
<a href="/challenge3/index.html" class="w3-bar-item w3-button">challenge 3</a>
<a href="/challenge4/index.html" class="w3-bar-item w3-button">challenge 4</a>
</div>
<h1>THE CSS CHALLENGE!</h1>
</body>
</html>