-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
38 lines (35 loc) · 1.91 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
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width,initial-scale=1">
<title>Personal Assistant</title>
<!-- Latest compiled and minified CSS -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<!-- jQuery library -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<link href="css/style.css" rel="stylesheet" type="text/css" />
<script type="text/javascript" src="js/jquery-1.12.3.min.js"></script>
<script type="text/javascript" src="js/jquery.nicescroll.min.js"></script>
<script type="text/javascript" src="https://www.gstatic.com/charts/loader.js"></script>
<script type="text/javascript" charset="UTF-8" src="https://www.gstatic.com/charts/45.2/loader.js"></script>
<script src="https://code.responsivevoice.org/responsivevoice.js"></script>
<script type="text/javascript" src="js/monica-bot.js"></script>
<script type="text/javascript" src="js/reqHandler.js"></script>
</head>
<script>
$(window).on('load resize', function () {
$('#chatBxDiv').height($(window).height() - 200)
});
</script>
<body>
<div class="col-lg-12">
<div class="col-lg-4"> <img src="images/1.png" id="botImage" alt="monica" onload="sayHello()"> </div>
<div class="col-lg-8 borderCls" id="chatBxDiv" >
<ul id="chatMsgs"> </ul>
</div>
<div class="col-lg-8" style="margin-top:3%">
<textarea id="chat-input" placeholder="Type a message" onkeypress="processText(event, this)" rows="2" id="comment" style="border-radius: 10px; width: 96%;"></textarea> <span id="rec" style="cursor: pointer;"><i style="font-size:40px;color: aliceblue;" class="fa"> </i></span> </div>
</div>
</body>
</html>