-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
28 lines (24 loc) · 950 Bytes
/
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
<html>
<head>
<meta charset="UTF-8">
<script language="javascript" type="text/javascript" src="webhelper.js"></script>
<script language="javascript" type="text/javascript" src="rpg-tollbooth.js"></script>
<link rel="stylesheet" type="text/css" href="main.css">
</head>
<body>
<div id = "border">
<p id = "currentStory">text</p>
<select id = "choices" name="choice">
<option id = "0" value="first">First Value</option>
<option id = "1" value="second" selected>Second Value</option>
<option id = "2" value="third">Third Value</option>
</select>
<button id = "button1">Click here</button>
</div>
<select id = "targets" name="target">
<option value="first">First Target</option>
<option value="second" selected>Second Target</option>
<option value="third">Third Target</option>
</select>
</body>
</html>