-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathchatbox.html
34 lines (29 loc) · 1.08 KB
/
chatbox.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>
<head>
<script src="jquery.min.js"></script>
<script src="popup.js"></script>
<script src="print.js"></script>
<script src="tools.js"></script>
<script src="sortable.js"></script>
<link rel="stylesheet" type="text/css" href="bootstrap.css">
<link rel="stylesheet" type="text/css" href="chatbox.css">
<!-- Material Design fonts -->
<link rel="stylesheet" type="text/css" href="font.css">
</head>
<body>
<div class="header">
<p style="margin-top: 20px;text-align: center;color: white;font-size: 12pt; font-family: Roboto;">
Welcome to the chatbox!
</p>
<div id="search_header">
<input type="text" class="form-control" id="search" placeholder="Search">
<button type="submit" id="resetSearch" ; style="margin-right: 50px">
<img src="icons/send.png" ></button>
</div>
</div>
<div id="bookmarks">
<img src="icons/convo.png" style="margin-top: 0px;margin-left: 15px;width:70%;height: 20%;">
<img src="icons/typing.png" style="margin-top: 0px;margin-left: 195px;width:40%;height: 10%;">
</div>
</body>