forked from sys5867/ctp441-game-project
-
Notifications
You must be signed in to change notification settings - Fork 0
/
scene04.html
26 lines (25 loc) · 834 Bytes
/
scene04.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
<html>
<head>
<title>CTP441 Prototype</title>
<link href="style.css" rel="stylesheet" type="text/css">
</head>
<body>
<div id="chatroom">
<div id="chatlist">
<div class="chatbox" id="c1">
<div id="character">
Teacher
</div>
<div id="chat-content">
How's the investigation going?
</div>
</div>
</div>
<div id="keyboard">
<a href="./scene05.html"><div id="selection">A. Answer Vaguely</div></a>
<a href="./scene06.html"><div id="selection">B. Tell her everything</div></a>
</div>
</div>
<script src="./scene04.js"></script>
</body>
</html>