-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathplanbot.html
More file actions
36 lines (26 loc) · 791 Bytes
/
planbot.html
File metadata and controls
36 lines (26 loc) · 791 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
32
33
34
35
36
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="styles/planbot.css" />
</head>
<body>
<a href="index.html">Home</a>
<h1> Plan-Bot </h1>
<p></p>
<img src="http://i.imgur.com/cXndEP8.png">
<p class = "questions">What do you want to do?</p>
<p></p>
<div class="form">
<label for="enter" >Enter Here:</label>
<input type="text" id="enter" class="enter">
<input type="submit" id="submit" value="Submit" class="Submit">
</div>
<div class ="responses">
<p class ="answers"></p>
</div>
<div class ="reset">
<input type="reset" id= "reset" class="reset">
</div>
</body>
<script src="scripts/planbot.js"></script>
</html>