forked from sys5867/ctp441-game-project
-
Notifications
You must be signed in to change notification settings - Fork 0
/
scene02.html
50 lines (49 loc) · 1.66 KB
/
scene02.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
<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">
HyunJun
</div>
<div id="chat-content">
You saw the group chat, right?
</div>
</div>
<div class="chatbox" id="c2">
<div id="character">
HyunJun
</div>
<div id="chat-content">
Can you do me a favor?
</div>
</div>
<div class="chatbox" id="c3">
<div id="character">
HyunJun
</div>
<div id="chat-content">
And keep them talking about DoJun.
</div>
</div>
<div class="chatbox" id="c4">
<div id="character">
HyunJun
</div>
<div id="chat-content">
Please.
</div>
</div>
</div>
<div id="keyboard">
<a href="./scene02 - º¹»çº».html"><div id="selection">A. Sure!</div></a>
<a href="./scene03.html"><div id="selection">B. What's going on? Tell me about you two.</div></a>
</div>
</div>
<script src="./scene02.js"></script>
</body>
</html>