forked from sys5867/ctp441-game-project
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathscene01.html
108 lines (107 loc) · 3.73 KB
/
scene01.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
107
108
<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 class="chatbox"
>
<div id="notice">
*CHAT INVITATION*
</div>
</div>
<div id="selection">
<div id="chatbox">
<div id="character">
HyunJun
</div>
<div id="chat-content">
Hey, we need to talk.
</div>
</div>
<a href=scene02.html>A. Talk to HyunJun</a>
</div>
<div id="selection">
<div id="chatbox">
<div id="character">
Teacher
</div>
<div id="chat-content">
How is the investigation going?
</div>
</div>
<a href=scene04.html>B. Talk to Teacher</a>
</div>
</div>
</div>
<script src="./scene01.js"></script>
</body>
</html>