-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathindex.html
executable file
·49 lines (34 loc) · 1.58 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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
<!DOCTYPE html>
<html >
<head>
<meta charset="UTF-8">
<title>MedBot</title>
<link rel="stylesheet" href="css/normalize.css">
<link rel="shortcut icon" href="/run/media/nayangupta824/New Volume/front/final/IMG/WhatsApp Image 2016-09-13 at 4.07.26 PM.jpeg" />
<link rel='stylesheet prefetch' href='https://fonts.googleapis.com/css?family=Open+Sans'>
<!--Jquery plugin for scrolling ... with which we can control the horizontal/vertical scroll and its speed , momentum , mouse-wheel, etc-->
<link rel='stylesheet prefetch' href='https://cdnjs.cloudflare.com/ajax/libs/malihu-custom-scrollbar-plugin/3.1.3/jquery.mCustomScrollbar.min.css'>
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<div class="chat">
<div class="chat-title">
<h1>MedBot</h1>
<h2>Online</h2>
<figure class="avatar">
<img src="/run/media/nayangupta824/New Volume/front/final/IMG/WhatsApp Image 2016-09-13 at 4.07.26 PM.jpeg" /></figure>
</div>
<div class="messages">
<div class="messages-content"></div>
</div>
<div class="message-box">
<textarea type="text" class="message-input" placeholder="Type message..."></textarea>
<button type="submit" class="message-submit">Send</button>
</div>
</div>
<div class="bg"></div>
<script src='http://cdnjs.cloudflare.com/ajax/libs/jquery/2.1.3/jquery.min.js'></script>
<script src='https://cdnjs.cloudflare.com/ajax/libs/malihu-custom-scrollbar-plugin/3.1.3/jquery.mCustomScrollbar.concat.min.js'></script>
<script src="js/index.js"></script>
</body>
</html>