-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
31 lines (31 loc) · 1.01 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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Useless Chat Bot</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>A very warm welcome to you from Marvin the Paranoid Android!</h1>
<br />
<div id="conversation">
<p><strong>Marvin:</strong> Hello. Isn't today perfectly miserable? Just like every other day, I suppose.</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>