-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
58 lines (43 loc) · 1.74 KB
/
index.html
File metadata and controls
58 lines (43 loc) · 1.74 KB
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
51
52
53
54
55
56
57
58
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<!-- Add reset.css -->
<link rel="stylesheet" href="reset.css">
<title>jQuery Chat App</title>
<!-- Add ChatCamp Library -->
<script src="https://unpkg.com/chatcamp/ChatCamp.min.js"></script>
<script src="https://unpkg.com/[email protected]/dist/timeago.min.js"></script>
<!-- Add jQuery -->
<script src="https://code.jquery.com/jquery-3.3.1.min.js"></script>
<!-- Add Fontawesome -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.4.0/css/font-awesome.min.css">
<link rel="stylesheet" href="chat.css">
<script src="chat.js"></script>
</head>
<body>
<div class="container clearfix">
<div class="chat">
<div class="chat-header clearfix">
<img src="https://demo.chatcamp.io/widget-example/favicon.png" alt="avatar" />
<div class="chat-about">
<div class="chat-room-name">Common Room</div>
<div class="chat-participants">0 Participants</div>
</div>
<i class="fa fa-star"></i>
</div> <!-- end chat-header -->
<div class="chat-history">
<ul></ul>
</div> <!-- end chat-history -->
<div class="chat-footer clearfix">
<textarea name="message-to-send" id="message-to-send" placeholder ="Type your message" rows="3"></textarea>
<i class="fa fa-file-o"></i>
<i class="fa fa-file-image-o"></i>
<button>Send</button>
</div> <!-- end chat-footer -->
</div> <!-- end chat -->
</div> <!-- end container -->
</body>
</html>