-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
50 lines (45 loc) · 1019 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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
<!DOCTYPE html>
<html>
<head>
<title>RPG</title>
<meta charset="UTF-8">
<script type="application/x-javascript" src="client/jquery.min.js"></script>
<script type="application/x-javascript" src="client/client.js"></script>
<script type="application/x-javascript" src="client/console.js"></script>
<style>
* {
font: normal normal normal 115%/normal
'Monaco', 'Courier New', 'DejaVu Sans Mono',
'Bitstream Vera Sans Mono', monospace !important;
}
#console-output {
overflow: auto;
position:absolute;
top:0px;
left:10px;
right:10px;
bottom:45px;
}
#console-input {
position:absolute;
bottom:0px;
left:1em;
width:90%;
}
#console-prompt {
position:absolute;
bottom:0px;
left:5px;
height:30px;
}
</style>
</head>
<body>
<div id="console-output">
</div>
<div id="console-prompt">
>
</div>
<input id="console-input"/>
</body>
</html>