-
Notifications
You must be signed in to change notification settings - Fork 0
/
timebot.html
53 lines (38 loc) · 1.49 KB
/
timebot.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
50
51
52
53
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="styles/timebot.css" />
<link rel="shortcut icon"
href="https://scontent.xx.fbcdn.net/v/t1.0-9/17990948_421934554816923_8215360792727293007_n.png?oh=cc63634a8d3c9e651135cf098391c623&oe=599826AB" />
</head>
<body>
<a href="index.html">Home</a>
<h1> Time-Bot </h1>
<p></p>
<!--This is the class wrapper so that stuff gets hidden -->
<div class = "hidden">
<img src="http://i.imgur.com/hqB7MD5.png">
<!-- This is where the questions show up-->
<p class = "questions">How long do you want to work? (Enter in minutes)</p>
<!-- This is where the form is-->
<div class="form">
<label for="enter">Enter Here:</label>
<input type="text" id="enter" class="enter">
<button type="Submit" class ="button Submit">Submit</button>
</div>
<!-- This is for the responses / answers you type in real-time-->
<div class ="responses">
<p class ="answers"></p>
</div>
</div>
<p></p>
<!-- This is where the final schedule appears-->
<ul class="finalschedule">
<li class ="schedule"></li>
</ul>
<!-- The two nice buttons come in here-->
<button class ="button reset">Reset</button>
<button class ="button make">MAKE SCHEDULE</button>
</body>
<script src="scripts/timebot.js"></script>
</html>