-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
34 lines (27 loc) · 913 Bytes
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta charset="UTF-8">
<title>Chatting with Xue</title>
<script src="https://code.jquery.com/jquery-3.3.1.min.js"
integrity="sha256-FgpCb/KJQlLNfOu91ta32o/NMZxltwRo8QtmkMRdAu8=" crossorigin="anonymous"></script>
<link type="text/css" rel="stylesheet" href="main.css" />
<link rel="shortcut icon" type="image/x-icon" href="./favicon.ico">
</head>
<body>
<div id="wrapper">
<div class="chat">
<div class="chat-container">
<div class="chat-listcontainer">
<ul class="chat-message-list"></ul>
</div>
</div>
<div class="user-chat type-js">
<li class="user-message text-js">Say something...</li>
</div>
</div>
</div>
<script type="text/javascript" src="conversation.js"></script>
</body>
</html>