-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstoryPane.html
27 lines (26 loc) · 955 Bytes
/
storyPane.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
<!DOCTYPE html>
<html lang="en-US">
<head>
<title>Ragnarok</title>
<meta charset="UTF-8"/>
<meta name="keywords" content= "RPG, Role-playing, text-game"/>
<meta name ="viewport" content= "width=device-width, initial-scale=1,
minimum-scale=0.5, maximum-scale=2"/>
<meta name="author" content = "Jeremy Chinsen"/>
<link rel="stylesheet" href="generalStylesheet.css"/>
<script src="storyPane.js"></script>
</head>
<body>
<!--
a <p> element that displays info of game
-->
<div id="textContainer">
<p id="textBox" style=
"font-family:'Lucida Console', 'Lucida Sans Typewriter', monaco, 'Bitstream Vera Sans Mono', monospace;color: #00e64d;text-shadow: 0 0 0.2em #1aff66;font-size:15px;">
</p>
</div>
<div id="inputText">
<input type="text" value=">" id ="inputBox" onkeypress="inputEntered(event, this)"/>
</div>
</body>
</html>