-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
39 lines (39 loc) · 2.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Main page</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="container">
<h1>JavaScript30</h1>
<p>Wes Bos's 30 day vanilla JS coding challenge</p>
</div>
<div class="list">
<h2>Exercises</h2>
<ul>
<li><a href="/01 - JavaScript Drum Kit/index-START.html"> exercise 1</a></li>
<li><a href="/02 - JS and CSS Clock/index-START.html"> exercise 2</a></li>
<li><a href="/03 - CSS Variables/index-START.html"> exercise 3</a></li>
<li><a href="/04 - Array Cardio Day 1/index-START.html"> exercise 4</a></li>
<li><a href="/05 - Flex Panel Gallery/index-START.html"> exercise 5</a></li>
<li><a href="/06 - Type Ahead/index-START.html"> exercise 6</a></li>
<li><a href="/07 - Array Cardio Day 2/index-START.html"> exercise 7</a></li>
<li><a href="/08 - Fun with HTML5 Canvas/index-START.html"> exercise 8</a></li>
<li><a href="/09 - Dev Tools Domination/index-START.html"> exercise 9</a></li>
<li><a href="/10 - Hold Shift and Check Checkboxes/index-START.html"> exercise 10</a></li>
<li><a href="/11 - Custom Video Player/index.html"> exercise 11</a></li>
<li><a href="/12 - Key Sequence Detection/index-START.html"> exercise 12</a></li>
<li><a href="/13 - Slide in on Scroll/index-START.html"> exercise 13</a></li>
<li><a href="/14 - JavaScript References VS Copying/index-START.html"> exercise 14</a></li>
<li><a href="/15 - LocalStorage/index-START.html"> exercise 15</a></li>
<li><a href="/16 - Mouse Move Shadow/index-START.html"> exercise 16</a></li>
<li><a href="/17 - Sort Without Articles/index-START.html"> exercise 17</a></li>
<li><a href="/18 - Adding Up Times with Reduce/index-START.html"> exercise 18</a></li>
</ul>
</div>
<script src="script.js"></script>
</body>
</html>