-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
32 lines (32 loc) · 821 Bytes
/
index.html
File metadata and controls
32 lines (32 loc) · 821 Bytes
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>简易网页机器人</title>
<link rel="stylesheet" href="css/index.css" />
<link rel="stylesheet" href="css/icomoon.css" />
</head>
<body>
<section id="chat-wrap">
<!-- 标题 -->
<header class="chat-header">
<div class="header-title">JeLiu在线</div>
</header>
<!-- 对话区 -->
<section class="chat-box">
<ul></ul>
</section>
<!-- 输入区 -->
<footer class="chat-input">
<form id="form">
<textarea class="input-words" autoFocus></textarea>
<div class="input-submit">
<span class="icon-paper-plane-o"></span>
</div>
</form>
</footer>
</section>
<script type='text/javascript' src="https://code.jquery.com/jquery-3.0.0.min.js"></script>
<script type='text/javascript' src="js/index.js"></script>
</body>
</html>