forked from sys5867/ctp441-game-project
-
Notifications
You must be signed in to change notification settings - Fork 0
/
scene02 - 복사본.html
49 lines (48 loc) · 1.53 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
<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">
Sure!
</div>
</div>
<div class="chatbox" id="c2">
<div id="character">
Player
</div>
<div id="chat-content">
I'll try my best :)
</div>
</div>
<div class="chatbox" id="c3">
<div id="character">
HyunJun
</div>
<div id="chat-content">
Thank u so much.
</div>
</div>
<div class="chatbox" id="c4">
<div id="character">
HyunJun
</div>
<div id="chat-content">
U R my life saver
</div>
</div>
</div>
<div id="keyboard">
<a href="./scene10.html"><div id="selection">A. Back to Group chat</div></a>
</div>
</div>
<script src="./scene02.js"></script>
</body>
</html>