forked from talhayousuff/softwarepractice
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
31 lines (31 loc) · 971 Bytes
/
index.html
File metadata and controls
31 lines (31 loc) · 971 Bytes
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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Hi there!</title>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css"
integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous">
<style> p { font-size:120%; } </style>
</head>
<body>
<div class="container">
<div class="row">
<div clss="col-sm-12">
<h1>Welcome to useless chat bot!</h1>
<br />
<div id="conversation">
<p><strong>Useless bot:</strong> Hello, how are you?</p>
</div>
<br />
<div class="form-group row">
<div class="col-sm-6">
<input type="text" class="form-control" id="message" placeholder="Your answer...">
</div>
<button class="btn btn-primary col-sm-2" id="sayit">Say it!</button>
</div>
</div>
</div>
</div>
<script src="bot.js"></script>
</body>
</html>