-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
60 lines (60 loc) · 1.81 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
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>Mortal: An Incremental Aging Game for Ludum Dare</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0">
<link rel="stylesheet" href="styles/mortal.css" />
<link href="https://fonts.googleapis.com/css?family=Do+Hyeon" rel="stylesheet">
</head>
<body>
<article>
<header>
<h1>Mortal</h1>
<div>An Incremental Aging Game</div>
<div>for Ludum Dare 41</div>
<div>Two Incompatible Genres: Incremental Clicker & Life Sim</div>
</header>
<div class="character age-0">
<img src="images/age-0.png" class="age-0" />
<img src="images/age-1.png" class="age-1" />
<img src="images/age-2.png" class="age-2" />
<img src="images/age-3.png" class="age-3" />
<img src="images/age-4.png" class="age-4" />
<img src="images/age-5.png" class="age-5" />
<img src="images/age-6.png" class="age-6" />
<div class="dead age-7">
<p>You're Dead</p>
<p>Game Over</p>
</div>
</div>
<div class="stats">
<div>
Age:
<span class="age-days">0000</span>
days
<span class="years">
(<span class="age-years">000</span> years)
</span>
</div>
</div>
<div class="clickers">
<button type="button" class="age age-button">
Get Older <span class="click-rate">(+<span class="rate">1</span> days/click)</span>
</button>
</div>
<footer>
<div>
© 2018, 2021 Luke @DeathrayGames
<br />
<a href="https://ldjam.com/events/ludum-dare/41/mortal">Ludum Dare Entry</a>
| <a href="https://www.reddit.com/r/incremental_games/">Reddit /r/incremental_games</a>
| <a href="http://deathraygames.com">DeathrayGames.com</a>
</div>
</footer>
</article>
<div class="scripts">
<script src="scripts/mortal-game.js"></script>
<script src="http://deathraygames.com/js/ga.js"></script>
</div>
</body>