-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
39 lines (37 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
33
34
35
36
37
38
39
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="description" content="Deck Dungeon is a single-player card-based dungeon crawler by Nathan Wentworth">
<title>DECK DUNGEON</title>
<!-- <link rel="apple-touch-icon" href=""> -->
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style.css">
<link href="https://fonts.googleapis.com/css?family=Alegreya+Sans:500,700" rel="stylesheet">
</head>
<body id="body">
<div id="overlay">
<div>
</div>
</div>
<div class="unselectable" id="status">
<span id="status-hp"></span>
<span id="status-atk"></span>
<span id="status-money"></span>
<span id="status-turns"></span>
<span id="status-lvl"></span>
</div>
<div class="btn unselectable" id="menu-btn">Menu</div>
<ul class="unselectable" id="menu-list" style="display: none;">
<li class="btn" id="help">Help</li>
<li class="btn" id="settings">Settings</li>
<li class="btn" id="info">Info</li>
<li class="btn" id="reset">Reset Game</li>
</ul>
<main id="main">
<img class="game-title" alt="DECK DUNGEON" src="img/title.png">
</main>
<noscript style="position: absolute; top: 16px; left: 16px;">sorry, this game requires javascript to run!</noscript>
<script type="text/javascript" src="main.js"></script>
</body>
</html>