-
Notifications
You must be signed in to change notification settings - Fork 1
/
scene05.html
40 lines (40 loc) · 1.27 KB
/
scene05.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
<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">
Player
</div>
<div id="chat-content">
Nothing much.
</div>
</div>
<div class="chatbox" id="c2">
<div id="character">
Teacher
</div>
<div id="chat-content">
Okay. But tell me if you know anything.
</div>
</div>
<div class="chatbox" id="c3">
<div id="character">
Player
</div>
<div id="chat-content">
Yes, maam.
</div>
</div>
</div>
<div id="keyboard">
<a href="./scene02.html"><div id="selection">A. Talk to HyunJun</div></a>
</div>
</div>
<script src="./scene05.js"></script>
</body>
</html>