-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
40 lines (33 loc) · 1.76 KB
/
Copy pathindex.html
File metadata and controls
40 lines (33 loc) · 1.76 KB
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
<!DOCTYPE html>
<html lang="en" xml:lang="en" xmlns= "http://www.w3.org/1999/xhtml">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="google" content="notranslate">
<title>Small Subway</title>
<link rel="icon" type="image/x-icon" href="./favicon.ico">
<link rel="stylesheet" href="stylesheet.css"> <!-- Link to your external CSS file -->
</head>
<body>
<div id="background-wrapper">
<h1>Small Subway</h1>
<h2>Based with love off of Mini Metro</h2>
<div id="gameCanvas"></div>
<script type="module" defer src="./index.ts"></script>
<h2 id="mobileMessage">{The game itself is best enjoyed on a computer}</h2>
<p id="instructions"> Help travelers reach their destinations!
Click & drag from a station (or line end) to make a subway line.
<br>
Refresh the page to start over.
</p>
<h2>Project Info and Background</h2>
<p> I started this project mainly to learn more about web app development and Typescript.
I really enjoyed the namesake game, <a href="https://dinopoloclub.com/games/mini-metro/">Mini Metro</a>, and decided to try to remake it to gain some valuable experience.
I'm pretty happy with how this turned out, although there are some definite areas I would like to improve.
Check out the game's <a href="https://github.com/CalNightingale/SmallSubway">Github repo</a> if you're curious about the next steps!
</p>
<h2>Find a Bug?</h2>
<p>If there's something broken, please report it on the <a href="https://github.com/CalNightingale/SmallSubway/issues">issues page</a> and I'll try to fix it</p>
</div>
</body>
</html>