forked from sys5867/ctp441-game-project
-
Notifications
You must be signed in to change notification settings - Fork 0
/
scene06.html
72 lines (72 loc) · 2.36 KB
/
scene06.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
69
70
71
72
<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">
I don't know for sure yet.
</div>
</div>
<div class="chatbox" id="c2">
<div id="character">
Player
</div>
<div id="chat-content">
But there is a chance that it is DoJun.
</div>
</div>
<div class="chatbox" id="c3">
<div id="character">
Player
</div>
<div id="chat-content">
Not really sure though...
</div>
</div>
<div class="chatbox" id="c4">
<div id="character">
Teacher
</div>
<div id="chat-content">
Very well.
</div>
</div>
<div class="chatbox" id="c5">
<div id="character">
Teacher
</div>
<div id="chat-content">
I'll ask him in person
</div>
</div>
<div class="chatbox" id="c6">
<div id="character">
Teacher
</div>
<div id="chat-content">
Thank you for looking into it.
</div>
</div>
<div class="chatbox" id="c7">
<div id="character">
Teacher
</div>
<div id="chat-content">
Good job.
</div>
</div>
</div>
<div id="c8">
<div id="selection">A. Ending</div>
</div>
</div>
<script src="./scene06.js"></script>
</body>
</html>