-
Notifications
You must be signed in to change notification settings - Fork 1
/
games.html
85 lines (76 loc) · 3.75 KB
/
games.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
<!DOCTYPE html>
<html lang = en-gb>
<head>
<meta charset = utf-8>
<meta name = viewport content = 'width = device-width, initial-scale = 1'>
<meta name = description content = 'Free online coding blogs and open source games'>
<script async src = 'https://www.googletagmanager.com/gtag/js?id=G-2MDQ9F697V'></script>
<script src = /src/js/analytics.js></script>
<script src = /src/js/main.js></script>
<title>Games | Joachim Ford</title>
<link rel = stylesheet href = /src/main.css>
<link rel = icon type = image/x-icon href = /src/favs/favicon.ico>
</head>
<body>
<section class = topnav>
<div class = title>
<a class = brand href = '/'>Joachim Ford</a>
<a class = about href = /about>About</a>
</div>
<div class = nav>
<a href = /games>Games</a>
<a href = /projects>Projects</a>
<a href = /blogs>Blogs</a>
<a href = /news>News</a>
</div>
</section>
<section class = main>
<a class = demo href = /src/content/squirtcopter>
<img class = tiny src = /src/images/squirtcopter.png>
<h3>Squirtcopter</h3>
<span class = description>
<p><b>Squirt your way to victory!</b> Squirtcopter is a fully-featured
game created in 13 days for the Gamedev.js Jam 2024.
Rated within the top 17% of all entries.</p>
<p>This game is <span class = mobile>mobile friendly</span>.</p>
</span>
</a>
<a class = demo href = /src/content/ios_mission>
<img class = tiny src = /src/images/ios_mission.png>
<h3>Io's Mission</h3>
<span class = description>
<p>Drillo has been captured by The Great Ominous!
Io's Mission is a fully-featured platform adventure where Io quests to
rescue his friends.</p>
<p>This game has full <span class = mobile>mobile support</span>.</p>
</span>
</a>
<a class = demo href = /src/content/snakes_and_ladders>
<img class = tiny src = /src/images/snakes_and_ladders.png>
<h3>Snakes And Ladders</h3>
<span class = description>
<p>On a mission to destroy the X-Ray Orb, help Drillo make his way through
the levels, avoiding side effects and getting powers along the way.</p>
<p>This platform game is <span class = mobile>mobile friendly.</span></p>
</span>
</a>
<a class = demo href = /src/content/the_mitigator>
<img class = tiny src = /src/images/the_mitigator.png>
<h3>The Mitigator</h3>
<span class = description>
<p>Save the planet by collecting litter, planting seeds and
overwhelming enemy robots with flowers.</p>
<p>This game was shortlisted for the
2022 Technocamps Game of Codes
competition under the theme Combatting Climate Change.</p>
</span>
</a>
</section>
<button class = theme onclick = toggleTheme()>Change Theme</button>
<span class = copyright>
© <span class = year></span> Joachim Ford. All rights reserved.
<a href = https://github.com/Hope41 target = _blank><img src = /src/images/github.svg></img></a>
<a href = mailto:hello@joachimford.uk><img src = /src/images/mail.svg></img></a>
</span>
</body>
</html>