-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathscene10.html
92 lines (91 loc) · 3.24 KB
/
scene10.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
<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">
YoungSuk
</div>
<div id="chat-content">
hey guys? I was going through some photos and looks what I found!
</div>
</div>
<div class="chatbox" id="c2">
<div id="character">
SeoYeon
</div>
<div id="chat-content">
OMG, isn't that the stolen bracelet?
</div>
</div>
<div id="c3" class="chatbox">
<div id="character">
YoungSuk
</div>
<div id="chat-content">
yep! It must be the theif
</div>
</div>
<div id="c4" class="chatbox">
<div id="character">
SiWoo
</div>
<div id="chat-content">
but who is it?? The pic is really blurry
</div>
</div>
<div id="c5" class="chatbox">
<div id="character">
MinJoo
</div>
<div id="chat-content">
Who wore the brown shirt that day?
</div>
</div>
<div id="c6" class="chatbox">
<div id="character">
YoungSuk
</div>
<div id="chat-content">
Wasn't it HyunJun?
</div>
</div>
<div id="c7" class="chatbox">
<div id="character">
SiWoo
</div>
<div id="chat-content">
No, no. HyunJun wasn't there. Is it DoJun??
</div>
</div>
<div id="c8" class="chatbox">
<div id="character">
MinJoo
</div>
<div id="chat-content">
Was DoJun there?
</div>
</div>
</div>
<div id="keyboard">
<div id="c9">
<div id="character">
Player
</div>
<div id="notice">
What am I supposed to do..?
</div>
</div>
<a href="./scene07.html"><div id="selection">A. Change the subject</div></a>
<a href="./scene08.html">
<div id="selection">B. stand up for Do Jun</div>
</a>
<a href="./scene09.html"><div id="G">C. Tell everyone that HyunJun said</div></a>
</div>
</div>
</body>
</html>