-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtext.html
33 lines (30 loc) · 1.41 KB
/
text.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
<!DOCTYPE html>
<html>
<head>
<title>Text Adventure!</title>
<link rel="stylesheet" type="text/css" href="style.css">
<script type="text/javascript" src="javascript-js.js"></script>
<script type="text/javascript" src="javascript-init.js"></script>
<script type="text/javascript" src="javascript-shop.js"></script>
<script type="text/javascript" src="javascript-items.js"></script>
<script src="jquery-1.11.3.js"></script>
</head>
<body onload="init()">
<div align="center" id="centeredDiv">
<img src="img/title.png" id="image" width="20%", height="20%">
<h3 id="debugText" class="debugText">This is a debug build. You will have test amounts of Gold and Health, and the layout of the game is very basic. Submit bugs <a href="https://github.com/JakesCode/TextQuest/issues">here.</a></h3>
<h1 id="header" class="header">Header</h1>
<h2 id="stats" class="stats">Player Info</h2>
<ul id="list2" class="list2"></ul>
<br><br>
<button id="option1" class="option1">Option 1</button>
<button id="option2" class="option2">Option 2</button>
<h3 id="optionalInfo" class="optionalInfo">Optional Information</h3>
<button id="actionButton" class="actionButton">Action Button</button>
<h1 id="extraHeader" class="extraHeader">Extra Header</h1>
<h2 id="infoHeader" class="infoHeader">Info Header</h1>
<h2 id="extraSubHeader" class="extraSubHeader">Extra Sub-Header</h2>
<ul id="list" class="list"></ul>
</div>
</body>
</html>