-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
41 lines (41 loc) · 1.12 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
<!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>Web Apps Basics Tasks</title>
</head>
<body>
<header>
<h1>Web Apps Basics: Tasks</h1>
<h2>
<a href="https://www.coding-bootcamps.eu/">Coding Bootcamps Europe</a>
</h2>
</header>
<main>
<h3 class="kata-list-header">Check out my Katas:</h3>
<ul class="kata-list">
<li>
<a href="light-switch/index.html">Light Switch</a>
</li>
<li>
<a href="password-toggle/index.html">Password Toggle</a>
</li>
<li>
<a href="fast-cheap-good/index.html">Fast-Cheap-Good</a>
</li>
<li>
<a href="counter/index.html">Counter</a>
</li>
<li>
<a href="clock/index.html">Clock</a>
</li>
<li>
<a href="color-mixer/index.html">Color Mixer (with API)</a>
</li>
</ul>
</main>
</body>
</html>