-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathscene09.html
106 lines (103 loc) · 3.04 KB
/
scene09.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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
<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">
Hey guys!
</div>
</div>
<div class ="chatbox"
id="c2">
<div id="chat-content">
As it turned out the bracelet in the picture is not the one we are looking for
</div>
</div>
<div class ="chatbox"
id="c3">
<div id="chat-content">
Hyun Jun and Do Jun have the same one, it is Do Jun's
</div>
</div>
<div class ="chatbox"
id="c4">
<div id="character">
SiWoo
</div>
<div id="chat-content">
Oooooohhh do u mean it's a couple bracelet??
</div>
</div>
<div class ="chatbox"
id="c5">
<div id="character">
YoungSuk
</div>
<div id="chat-content">
Huh??? what??
</div>
</div>
<div class ="chatbox"
id="c6">
<div id="character">
Minjoo
</div>
<div id="chat-content">
Omg a couple item woo hoo
</div>
</div>
<div class ="chatbox"
id="c7">
<div id="character">
DoYoung
</div>
<div id="chat-content">
Guys relax, stop making them into a gay couple
</div>
</div>
<div class ="chatbox"
id="c8">
<div id="notice">
*Do Jun has left the chat*
</div>
</div>
<div class ="chatbox"
id="c9">
<div id="character">
SiWoo
</div>
<div id="chat-content">
Why did he leave?
</div>
</div>
<div class ="chatbox"
id="c10">
<div id="character">
Minjoo
</div>
<div id="chat-content">
....??? did we offend him??
</div>
</div>
<div class ="chatbox"
id="c11">
<div id="character">
YoungSuk
</div>
<div id="chat-content">
Or maybe it is true...
</div>
</div>
</div>
</div>
<script src="./scene09.js"></script>
</body>
</html>