-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
29 lines (28 loc) · 1.03 KB
/
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Duet</title>
<link rel="stylesheet" href="/css/cut.css" />
<link rel="stylesheet" href="/css/main.css" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<script src="https://cdn.jsdelivr.net/npm/marked/marked.min.js"></script>
</head>
<body>
<div class="chat-container">
<div class="mesgs" >
<div class="msg_history" id="chat-box">
</div>
<div class="type_msg">
<div class="input_msg_write">
<input type="text" class="write_msg" id="user-input" placeholder="Type a message" />
<button class="msg_send_btn" type="button" id="send-button"><i class="fa fa-paper-plane-o fa-sm" aria-hidden="true"></i></button>
</div>
</div>
</div>
</div>
</div>
<script src="/js/main.js"></script>
</body>
</html>