-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
146 lines (131 loc) · 4.93 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
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1"/>
<title>Doodad Games</title>
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<nav class="header-nav">
<img src="img/doodad-games-wide.svg" alt="Doodad Games Logo" class="header-nav__main-logo"/>
<div class="header-nav__social-links">
<a href="https://discord.gg/sqXEFyptdz"><img src="img/discord-icon-white.png" alt="Discord Logo" class="header-nav__discord-logo"/></a>
<a href="https://twitter.com/Doodad_Games"><img src="img/x-icon-white.png" alt="X Logo" class="header-nav__x-logo"/></a>
<a href="mailto:[email protected]"><img src="img/email-icon-white.png" alt="Email Icon" class="header-nav__email-icon"/></a>
</div>
</nav>
<ul class="games">
<li>
<a href="frankenstorm-td-prologue.html">
<div class="logo">
<img src="img/frankenstorm-td-prologue.jpg" alt="FrankenStorm TD: Prologue logo"/>
</div>
<span>FrankenStorm TD: Prologue</span>
</a>
</li>
<li>
<a href="viking-trickshot/index.html">
<div class="logo">
<img src="img/viking-trickshot.jpg" alt="Viking Trickshot logo"/>
</div>
<span>Viking Trickshot</span>
</a>
</li>
</ul>
<h2>Newsletter</h2>
<p>
We share and track our releases, major updates, sales/discounts, and other big news through a newsletter.
Subscribe <a href="https://subscribepage.io/Doodad" target="_blank">here</a>!
</p>
<h2>Experiments</h2>
<p>
Some of these are <a href="https://github.com/doodad-games">open source</a>.
</p>
<ul class="experimental-games">
<li class="inline-icon-title">
<a href="bombardier.html"><img src="img/bombardier.png" alt="Bombardier logo"/></a>
<a href="bombardier.html">
<span>Bombardier</span>
</a>
</li>
<li class="inline-icon-title">
<a href="reef-defenders.html"><img src="img/reef-defenders.jpg" alt="Reef Defenders logo"/></a>
<a href="reef-defenders.html">
<span>Reef Defenders</span>
</a>
</li>
<li class="inline-icon-title">
<a href="space-trash.html"><img src="img/space-trash.jpg" alt="Space Trash logo"/></a>
<a href="space-trash.html">
<span>Space Trash</span>
</a>
</li>
<li class="inline-icon-title">
<a href="typing-gladiators.html"><img src="img/typing-gladiators.png" alt="Typing Gladiators logo"/></a>
<a href="typing-gladiators.html">
<span>Typing Gladiators</span>
</a>
</li>
<li class="inline-icon-title">
<a href="two-tweets/index.html"><img src="img/two-tweets.jpg" alt="Two Tweets logo"/></a>
<a href="two-tweets/index.html">
<span>Two Tweets</span>
</a>
</li>
<li class="inline-icon-title">
<a href="unitower.html"><img src="img/unitower.png" alt="uniTower logo"/></a>
<a href="unitower.html">
<span>uniTower</span>
</a>
</li>
<li class="inline-icon-title">
<a href="villager.html"><img src="img/villager.jpg" alt="Villager logo"/></a>
<a href="villager.html">
<span>Villager</span>
</a>
</li>
<li class="inline-icon-title">
<a href="alphabet-earthquake.html"><img src="img/alphabet-earthquake.png" alt="Alphabet Earthquake logo"/></a>
<a href="alphabet-earthquake.html">
<span>Alphabet Earthquake</span>
</a>
</li>
<li class="inline-icon-title">
<a href="im-a-fish.html"><img src="img/im-a-fish.jpg" alt="I'm a Fish logo"/></a>
<a href="im-a-fish.html">
<span>I'm a Fish</span>
</a>
</li>
<li class="inline-icon-title">
<a href="rabbit-flick.html"><img src="img/rabbit-flick.png" alt="Rabbit Flick logo"/></a>
<a href="rabbit-flick.html">
<span>Rabbit Flick</span>
</a>
</li>
</ul>
<p>(Others which don't yet have key art 😅)</p>
<ul>
<li><a href="https://bilalakil.itch.io/stone-td" target="_blank">Stone TD</a></li>
<li><a href="https://doodadgames.itch.io/item-td-2" target="_blank">Item TD 2</a></li>
</ul>
<h2>About</h2>
<p>
<a href="https://linkedin.com/in/bilalakil" target="_blank">Bilal Akil</a>
is Doodad Games' founder, and the programmer in all of its projects.
Most of them were made in collaboration with assorted indie artists and developers.
</p>
<p>
Tower defences have a special place in Doodad Games' heart.
We also develop kids games and other random ideas as we go.
</p>
<footer>
<hr/>
<nav>
<ul>
<li><a href="privacy.html">Privacy policy</a></li>
</ul>
</nav>
</footer>
</body>
</html>