-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathscene08.html
70 lines (68 loc) · 1.97 KB
/
scene08.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
<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 hey guys
</div>
</div>
<div
class ="chatbox"
id="c2">
<div id="chat-content">
Lets not jump to conclusion here!
</div>
</div>
<div class ="chatbox"
id="c3">
<div id="chat-content">
How would u feel if YOU were the one getting blamed
</div>
</div>
<div class ="chatbox"
id="c4">
<div id="chat-content">
I don't think we should start pointing fingers before we know for sure
</div>
</div>
<div class ="chatbox"
id="c5">
<div id="character">
SiWoo
</div>
<div id="chat-content">
Hmm.. I guess u r right
</div>
</div>
<div class ="chatbox"
id="c6">
<div id="character">
Minjoo
</div>
<div id="chat-content">
Boooring
</div>
</div>
<div class ="chatbox"
id="c7">
<div id="character">
YoungSeok
</div>
<div id="chat-content">
R you saying I'm witch hunting? now I'm offended
</div>
</div>
</div>
</div>
<script src="./scene08.js"></script>
</body>
</html>