This repository has been archived by the owner on Mar 9, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
81 lines (81 loc) · 3.07 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Duncan’s JS challenges</title>
<base href="https://www.duncanritchie.co.uk/js-challenges/"/>
<link rel="stylesheet" type="text/css" href="./main.css" />
<link rel="icon" href="https://www.duncanritchie.co.uk/favicon.ico" type="image/x-icon" />
<link rel="icon" href="https://www.duncanritchie.co.uk/favicon-96x96.png" type="image/png" />
</head>
<body id="index">
<main>
<h1>
Duncan’s game page
</h1>
<p class="explanation">
Click on a thing! Or see my <a href="https://www.duncanritchie.co.uk" title="Duncan Ritchie’s website">website</a> or the <a href="https://github.com/DuncanRitchie/jsChallenges" title="Code on GitHub">code for these games</a>.
</p>
<ul>
<li>
<a href="cashmachine/cashmachine.html" alt="Cash machine">
Cash machine<br />
<time datetime="2019-01-28">(finished 2019 Jan 28)</time>
</a>
</li>
<li>
<a href="cyberpet/cyberpet.html" alt="Cyber-pet">
Cyber-pet<br />
<time datetime="2019-02-01">(finished 2019 Feb 01)</time>
</a>
</li>
<li>
<a href="keycode-drumkit/keycode-drumkit.html" alt="Keycode generator and drumkit">
Keycode generator and drumkit<br />
<time datetime="2019-02-11">(finished 2019 Feb 11)</time>
</a>
</li>
<li>
<a href="dice/dice.html" alt="Dice-game">
Dice game<br />
<time datetime="2019-02-11">(finished 2019 Feb 11)</time>
</a>
</li>
<li>
<a href="whackamole/whackamole.html" alt="Whack-a-mole">
Whack-a-mole<br />
<time datetime="2019-02-12">(finished 2019 Feb 12)</time>
</a>
</li>
<li>
<a href="clock/clock.html" alt="Clock">
Clock<br />
<time datetime="2019-02-12">(finished 2019 Feb 12)</time>
</a>
</li>
<li>
<a href="chess/chess.html" alt="Chess">
Chess<br />
<time datetime="2019-02-12">(finished 2019 Feb 18)</time>
</a>
</li>
</ul>
</main>
<footer>
<ul>
<li>
<a href="https://www.duncanritchie.co.uk" title="Duncan Ritchie’s website">
Made by Duncan Ritchie
</a>
</li>
<li>
<a href="https://github.com/DuncanRitchie/jsChallenges" title="Code on GitHub">
See the code
</a>
</li>
</ul>
</footer>
</body>
</html>