-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathroom.html
executable file
·70 lines (55 loc) · 1.95 KB
/
room.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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
<html>
<head>
<title>Dan's and Arty's Room</title>
<style type="text/css">
body {background-color: #CCCCCC}
#center {position: relative; top: 20px;}
</style>
</head>
<body>
<!-- This is the image -->
<center><img src="http://www.brandonhall.com/blogs/wp-content/uploads/2013/09/classroom-1.jpg" width="666" height="500"></center>
<!-- This is the header -->
<hr/>
<center>
<h1 title="This is the best room.">This is the math room.</h1>
<h2> You may enter: DROP, EXIT, PLAY, REFRESH </h2>
<hr/>
<!-- This is the North button -->
<center>
<form action="cgi-bin/a.out.cgi" method="get">
<input type="submit" name="input" value="North">
<input type="hidden" name="inventory" value="5,0">
<input type="hidden" name="URL" value="http://www.cs.mcgill.ca/~dvanac">
</form>
</center>
<!-- This is the West button, East button, textbox, and submit button. -->
<center>
<form action="cgi-bin/a.out.cgi" method="get" style="display: inline;">
<input type="submit" value="West">
<input type="hidden" name="inventory" value="5,0">
<input type="hidden" name="URL" value="http://www.cs.mcgill.ca/~dvanac">
</form>
<form action="cgi-bin/a.out.cgi" method="get" style="display: inline;">
<input type="text" name="input">
<input type="submit" value="submit">
<input type="hidden" name="inventory" value="5,0">
</form>
<form action="cgi-bin/a.out.cgi" method="get" style="display: inline;">
<input type="submit" value="East">
<input type="hidden" name="inventory" value="5,0">
<input type="hidden" name="URL" value="http://www.cs.mcgill.ca/~dvanac">
</form>
</center>
<!-- This is the South button -->
<center>
<div id="center">
<form action="cgi-bin/transporter.py" method="get">
<input type="submit" value="South">
<input type="hidden" name="inventory" value="5,0">
<input type="hidden" name="URL" value="http://www.cs.mcgill.ca/~dvanac">
</form>
</div>
</center>
</body>
</html>