forked from sys5867/ctp441-game-project
-
Notifications
You must be signed in to change notification settings - Fork 0
/
scene03.html
88 lines (88 loc) · 2.99 KB
/
scene03.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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
<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">
What's going on?
</div>
</div>
<div class="chatbox" id="c2">
<div id="character">
Player
</div>
<div id="chat-content">
I need to know what's going on between you two.
</div>
</div>
<div class="chatbox" id="c3">
<div id="character">
HyunJun
</div>
<div id="chat-content">
What do you mean?
</div>
</div>
<div class="chatbox" id="c4">
<div id="character">
HyunJun
</div>
<div id="chat-content">
Are you also suspecting DoJun?
</div>
</div>
<div class="chatbox" id="c5">
<div id="character">
HyunJun
</div>
<div id="chat-content">
I swear to god, he has nothing to do with this.
</div>
</div>
<div class="chatbox" id="c6">
<div id="character">
HyunJun
</div>
<div id="chat-content">
That bracelet...
</div>
</div>
<div class="chatbox" id="c7">
<div id="character">
HyunJun
</div>
<div id="chat-content">
......
</div>
</div>
<div class="chatbox" id="c8">
<div id="character">
HyunJun
</div>
<div id="chat-content">
It's ours. We have the same pair.
</div>
</div>
<div class="chatbox" id="c9">
<div id="character">
HyunJun
</div>
<div id="chat-content">
Don't tell anyone.
</div>
</div>
</div>
<div id="keyboard">
<a href="./scene10.html"><div id="selection">A. Back to the group chat</div></a>
</div>
</div>
<script src="./scene03.js"></script>
</body>
</html>