-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
32 lines (28 loc) · 1.28 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="initial-scale=1, width=device-width" />
<title>Chain</title>
<link rel="stylesheet" href="css/app.css" />
<script defer type="module" src="js/app.js"></script>
</head>
<body>
<div id="app">
<span class="loader"></span>
</div>
<div id="notes">
<p><strong>Credits</strong></p>
<ul>
<li>Game rules design and name by Tim Watson</li>
<li>Game development, design, and game rules tweaks by <a href="https://blakewatson.com/">Blake Watson</a></li>
<li>Playtesting and feedback by Tim Watson and <a href="https://www.mattwatson.org/">Matt Watson</a></li>
<li>Font: Ships Whistle by <a href="https://simplebits.com/products/ships-whistle-font">SimpleBits</a></li>
<li>Word score sound by <a href="https://freesound.org/people/RICHERlandTV/sounds/351545/">RICHElandTV</a></li>
<li>Tile pop sound by <a href="https://freesound.org/people/Vilkas_Sound/sounds/463388/">Vilkas_Sound</a></li>
<li>Button click sound by <a href="https://freesound.org/people/Breviceps/sounds/448086/">Breviceps</a></li>
<li>Built with <a href="https://pixijs.com/">PixiJS</a></li>
</ul>
</div>
</body>
</html>