-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
127 lines (101 loc) · 3.22 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
<!DOCTYPE html>
<html lang="en">
<head>
<title>
⚓ Vanilla JS Academy | Projects
</title>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<!-- import the webpage's stylesheet -->
<link rel="stylesheet" href="./style-reset.css" />
<link rel="stylesheet" href="./style-base.css" />
<!-- import the webpage's javascript file -->
<script src="./script.js" defer></script>
<!-- import Jost variable weights 400 (regular) to 700 (bold) + italics. -->
<link href="https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,400..700;1,400..700&display=swap" rel="stylesheet">
</head>
<body>
<main>
<h1 class="title">Vanilla JS Academy Projects</h1>
<p>This be where the projects lie. Arrr.</p>
<div class="toc">
<h2>
<span>Day 1</span>
<a href="./Day01-TogglePasswordVisibility/">Toggle Password Visibility</a>
</h2>
<h2>
<span>Day 3</span>
<a href="./Day03-TogglingMultiplePasswordFields/"> Toggling Multiple Password Fields</a>
</h2>
<h2>
<span>Day 5</span>
<a href="./Day05-PasswordVisibility-MultipleForms/"> Password Visibility — Multiple Forms</a>
</h2>
<h2>
<span>Day 7</span>
<a href="./Day07-CharacterCount/"> Character Count</a>
</h2>
<h2>
<span>Day 9</span>
<a href="./Day09-CharacterAndWordCount/"> Character and Word Count</a>
</h2>
<h2>
<span>Day 11</span>
<a href="./Day11-AnnouncingTheCount/"> Announcing the Count</a>
</h2>
<h2>
<span>Day 13</span>
<a href="./Day13-RandomRon/"> Random Ron</a>
</h2>
<h2>
<span>Day 15</span>
<a href="./Day15-RandomRonWithoutDuplicates/"> Random Ron Without Duplicates</a>
</h2>
<h2>
<span>Day 17</span>
<a href="./Day17-Headlines/">NYT Headlines</a>
</h2>
<h2>
<span>Day 19</span>
<a href="./Day19-MultipleCategories/">NYT Multiple Categories</a>
</h2>
<h2>
<span>Day 21</span>
<a href="./Day21-SanitiseNYT/">Sanitise NYT</a>
</h2>
<h2>
<span>Day 23</span>
<a href="./Day23-MonsterShuffle/">Monster Shuffle</a>
</h2>
<h2>
<span>Day 25</span>
<a href="./Day25-FindTheMonsters/">Find the Monsters</a>
</h2>
<h2>
<span>Day 27</span>
<a href="./Day27-FindMonstersTrackWins/">Find the Monsters, Track Wins</a>
</h2>
<h2>
<span>Day 29</span>
<a href="./Day29-TableOfContents/">Table of Contents</a>
</h2>
<h2>
<span>Day 31</span>
<a href="./Day31-TableOfContentsMissingIDs/">Table of Contents Missing IDs</a>
</h2>
<h2>
<span>Day 33</span>
<a href="./Day33-TableOfContentsScope/">Table of Contents - Scope</a>
</h2>
<h2>
<span>Day 35</span>
<a href="./Day35-WeatherApp/">Weather App</a>
</h2>
</div>
<footer>
<p>Design and code by Charles. Source on <a href="https://github.com/charlesroper/vanilla-js-academy">GitHub</a>.</p>
</footer>
</main>
</body>
</html>