-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
151 lines (150 loc) · 3.57 KB
/
index.html
File metadata and controls
151 lines (150 loc) · 3.57 KB
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
149
150
151
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Javascript 30 Challenge</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style.css">
</head>
<body>
<header>
<h1>Javascript 30 Challenge Front page</h1>
</header>
<ol>
<li>
<a href="01-DrumKit/drum-kit.html">
Drum Kit
</a>
</li>
<li>
<a href="02-Clock/clcok.html">
Clock
</a>
</li>
<li>
<a href="03-CSS Variables/css-variables.html">
CSS Variables
</a>
</li>
<li>
<a href="04-Array Cardio Day 1/index.html">
Array Cardio Day 1
</a>
</li>
<li>
<a href="05-Flex Panels Image Gallery/index.html">
Flex Panels Image Gallery
</a>
</li>
<li>
<a href="06-ajax type ahead/index.html">
Ajax Type Ahead
</a>
</li>
<li>
<a href="07-Array Cardio Day 2/index.html">
Array Cardio Day 2
</a>
</li>
<li>
<a href="08-html 5 canvas/index.html">
html 5 canvas
</a>
</li>
<li>
<a href="09-Dev Tools Domination/index.html">
Dev Tools Domination
</a>
</li>
<li>
<a href="10-Hold Shift and Check Checkboxes/index.html">
Hold Shift and Check Checkboxes
</a>
</li>
<li>
<a href="11-Custom Video Player/index.html">
Custom Video Player
</a>
</li>
<li>
<a href="12-Key Sequence Detection/index.html">
Key Sequence Detection
</a>
</li>
<li>
<a href="13-Slide in on Scroll/index.html">
Slide in on Scroll
</a>
</li>
<li>
<a href="14-JavaScript References VS Copying/index.html">
JavaScript References VS Copying
</a>
</li>
<li>
<a href="15-LocalStorage/index.html">
LocalStorage
</a>
</li>
<li>
<a href="16-Mouse Move Shadow/index.html">
Mouse Move Shadow
</a>
</li>
<li>
<a href="17-Sort Without Articles/index.html">
Sort Without Articles
</a>
</li>
<li>
<a href="18-Adding Up Times with Reduce/index.html">
Adding Up Times with Reduce
</a>
</li>
<li>
<a href="19-Webcam Fun/index.html">
Webcam Fun // TODO
</a>
</li>
<li>
<a href="20-Native Speech Recognition/index.html">
Native Speech Recognition // TODO
</a>
</li>
<li>
<a href="21-Geolocation based Speedometer and Compass/index.html">
Geolocation based Speedometer and Compass //TODO
</a>
</li>
<li>
<a href="22-Follow Along Links/index.html">
Follow Along Links
</a>
</li>
<li>
<a href="23-Speech Synthesis/index.html">
Speech Synthesis // TODO
</a>
</li>
<li>
<a href="24-Sticky Nav/index.html">
Sticky Nav
</a>
</li>
<li>
<a href="25-Event Capture, Propagation, Bubbling and Once/index.html">
Event Capture, Propagation, Bubbling and Once
</a>
</li>
<li>
<a href="26-Stripe Follow Along Nav/index.html">
Stripe Follow Along Nav
</a>
</li>
</ol>
<footer>
original files can be found <a href="https://github.com/wesbos/JavaScript30" target="_blank" rel="nofollow">here</a>
</footer>
<script src="base.js"></script>
</body>
</html>