-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
148 lines (145 loc) · 4.5 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
<!DOCTYPE html>
<html lang="en">
<head>
<base target="_blank" />
<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>JS30</title>
<link rel="stylesheet" href="style.css" />
</head>
<body>
<header>
<!-- <img class="js30" src="https://javascript30.com/images/JS3-social-share.png" alt="vanilla javascript30"> -->
<h1>Vanilla Javascript 30</h1>
</header>
<main>
<div class="days">
<ol>
<li>
<a href="Day/01 - JavaScript Drum Kit/index.html">Drum Kit</a>
</li>
<li>
<a href="Day/02 - JS and CSS Clock/index.html">JS and CSS Clock</a>
</li>
<li>
<a href="Day/03 - CSS Variables/index.html">CSS Variables</a>
</li>
<li>
<a href="Day/04 - Array Cardio Day 1/index.html"
>Array Cardio Day 1</a
>
</li>
<li>
<a href="Day/05 - Flex Panel Gallery/index.html"
>Flex Panel Gallery</a
>
</li>
<li>
<a href="Day/06 - Type Ahead/index.html">Type Ahead</a>
</li>
<li>
<a href="Day/07 - Array Cardio Day 2/index.html"
>Array Cardio Day 2</a
>
</li>
<li>
<a href="Day/08 - Fun with HTML5 Canvas/index.html"
>Fun with HTML5 Canvas</a
>
</li>
<li>
<a href="Day/09 - Dev Tools Domination/index.html"
>Dev Tools Domination</a
>
</li>
<li>
<a href="Day/10 - Hold Shift and Check Checkboxes/index.html"
>Hold Shift and Check Checkboxes</a
>
</li>
<li>
<a href="Day/11 - Custom Video Player/index.html"
>Custom Video Player</a
>
</li>
<li>
<a href="Day/12 - Key Sequence Detection/index.html"
>Key Sequence Detection</a
>
</li>
<li>
<a href="Day/13 - Slide in on Scroll/index.html"
>Slide in on Scroll</a
>
</li>
<li>
<a href="Day/14 - JavaScript References VS Copying/index.html"
>JS Reference VS Copy</a
>
</li>
<li>
<a href="Day/15 - LocalStorage/index.html">LocalStorage</a>
</li>
<li>
<a href="Day/16 - Mouse Move Shadow/index.html">Mouse Shadow</a>
</li>
<li>
<a href="Day/17 - Sort Without Articles/index.html"
>Sort Without Articles</a
>
</li>
<li>
<a href="Day/18 - Adding Up Times with Reduce/index.html"
>Adding Up Times with Reduce</a
>
</li>
<li>
<a href="Day/19 - Webcam Fun/index.html">Webcam Fun [skipped]</a>
</li>
<li>
<a href="Day/20 - Speech Detection/index.html">Speech Detection</a>
</li>
<li>
<a href="Day/21 - Geolocation/index.html">Geolocation</a>
</li>
<li>
<a href="Day/22 - Follow Along Link Highlighter/index.html"
>Follow Along Link Highlighter</a
>
</li>
<li>
<a href="Day/23 - Speech Synthesis/index.html">Speech Synthesis</a>
</li>
<li><a href="Day/24 - Sticky Nav/index.html">Sticky Nav</a></li>
<li>
<a
href="Day/25 - Event Capture, Propagation, Bubbling and Once/index.html"
>Event Capture, Propagation, Bubbling and Once</a
>
</li>
<li>
<a href="Day/26 - Stripe Follow Along Nav/index.html"
>Stripe Follow Along Nav</a
>
</li>
<li>
<a href="Day/27 - Click and Drag/index.html">Click and Drag</a>
</li>
<li>
<a href="Day/28 - Video Speed Controller/index.html"
>Video Speed Controller</a
>
</li>
<li>
<a href="Day/29 - Countdown Timer/index.html">Countdown Timer</a>
</li>
<li><a href="Day/30 - Whack A Mole/index.html">Whack A Mole!</a></li>
</ol>
</div>
</main>
<footer>
<p>TODO fix this shitty home page</p>
</footer>
</body>
</html>