generated from tassaron/canvas-game
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
31 lines (28 loc) · 1.04 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
</meta>
<title>Rodent's Revenge</title>
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="../back_button.css">
<link rel="icon" href="../img/favicon.ico">
</head>
<body>
<div id="pause_button">▌▌ PAUSE GAME</div>
<div id="main_content">
<script type="module" src="main.js"></script>
<h1>Rodent's Revenge</h1>
<div id="help_text">A remake of the <a style="color:#fff" href="https://en.wikipedia.org/wiki/Rodent's_Revenge">classic Microsoft game</a>. Use crates to block in the cats and turn them into cheese!</div>
<div id="game"></div>
<p style="padding-top:100px">
<small>
made by <a href="https://tassaron.com">tassaron<img src="../img/old_favicon.ico"
alt="tassaron muffin-with-crown icon"></a>
<br>
<a href="https://github.com/tassaron/rodents-revenge">source code on github</a>
</small>
</p>
</div>
</body>
</html>