forked from AustinCodingAcademy/javascript-workbook
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
87 lines (70 loc) · 2.45 KB
/
index.html
File metadata and controls
87 lines (70 loc) · 2.45 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale = 1">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Deyton Koch</title>
<!-- CSS link -->
<link rel="stylesheet" type="text/css" href="style.css"></link>
</head>
<body>
<main>
<h1>Javascript Workbook</h1>
<h2>Week 1</h2>
<ul>
<li><a href="01week/javascripting/introduction.js">Javascripting (Introduction)</a></li>
<li><a href="01week/rockPaperScissors.js">Rock Paper Scissors</a></li>
</ul>
<h2>Week 2</h2>
<ul>
<li><a href="02week/pigLatin.js">Pig Latin</a></li>
<li><a href="02week/ticTacToe.js">Tic Tac Toe</a></li>
</ul>
<h2>Week 3</h2>
<ul>
<li><a href="03week/mastermind.js">Mastermind</a></li>
<li><a href="03week/towersOfHanoi.js">Towers of Hanoi</a></li>
</ul>
<h2>Week 4</h2>
<ul>
<li><a href="04week/functional-javascript/helloWorld.js">Functional Javascript (Hello World)</a></li>
<li><a href="04week/algorithms.js">Algorithms</a></li>
<li><a href="04week/higherOrder.js">Higher Order</a></li>
</ul>
<h2>Week 5</h2>
<ul>
<li><a href="05week/checkers.js">Checkers</a></li>
<li><a href="05week/spaceTravelToMars.js">Space Travel to Mars</a></li>
</ul>
<h2>Week 6</h2>
<ul>
<li><a href="06week/mastermind/index.html">Mastermind</a></li>
<li><a href="06week/ticTacToe/index.html">Tic Tac Toe</a></li>
<li><a href="06week/towersOfHanoi/index.html">Towers of Hanoi</a></li>
</ul>
<h2>Week 7</h2>
<ul>
<li><a href="07week/ticTacToe/index.html">Tic Tac Toe</a></li>
<li><a href="07week/towersOfHanoi/index.html">Towers of Hanoi</a></li>
</ul>
<h2>Week 8</h2>
<ul>
<li><a href="08week/bootstrap/index.html">Bootstrap</a></li>
<li><a href="08week/fetch/index.html">Fetch</a></li>
</ul>
<h2>Week 9</h2>
<ul>
<li><a href="09week/hackernews/index.html">Hackernews</a></li>
</ul>
<h2>Week 10</h2>
<ul>
<li><a href=""></a></li>
</ul>
</main>
<!-- cdnjs.com jquery link -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<!-- javascript link -->
<script src="script.js" charset="utf-8"></script>
</body>
</html>