-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathscene07.html
54 lines (52 loc) · 1.62 KB
/
scene07.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
<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, the teacher just asked me
</div>
</div>
<div class ="chatbox"
id="c2">
<div id="chat-content">
We need to decide on what to do at the school trip
</div>
</div>
<div class ="chatbox"
id="c3">
<div id="chat-content">
U know.. the talent show?
</div>
</div>
<div class ="chatbox"
id="c4">
<div id="character">
Minjoo
</div>
<div id="chat-content">
omg.. I totally forgot about that
</div>
</div>
<div class ="chatbox"
id="c5">
<div id="character">
YoungSeok
</div>
<div id="chat-content">
Oh, I have a great idea!
</div>
</div>
</div>
</div>
<script src="./scene07.js"></script>
</body>
</html>