-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
126 lines (122 loc) · 4.88 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css" />
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.8.1/css/all.css"
integrity="sha384-50oBUHEmvpQ+1lW4y57PTFmhCaXp0ML5d60M1M7uH2+nqUivzIebhndOJK28anvf" crossorigin="anonymous" />
<link href="https://fonts.googleapis.com/css?family=Open+Sans&display=swap" rel="stylesheet" />
<link rel="stylesheet" href="./style.css" />
<title>Day-Planner</title>
</head>
<body>
<header class="jumbotron">
<h1 class="display-3">Day-Planner</h1>
<p class="Phrase">This app helps plan your current work day.</p>
<p id="currentDay" class="lead">Current Day</p>
</header>
<div class="container">
<div id="6AM" class="time-block past">
<span class="time-label">6:00AM</span>
<input class="textBox" type="text">
<button id="6" class="btn saveBtn">Save</button>
</div>
<div id="7AM" class="time-block past">
<span class="time-label">7:00AM</span>
<input class="textBox" type="text">
<button id="7" class="btn saveBtn">Save</button>
</div>
<div id="8AM" class="time-block past">
<span class="time-label">8:00AM</span>
<input class="textBox" type="text">
<button id="8" class="btn saveBtn">Save</button>
</div>
<div id="9AM" class="time-block past">
<span class="time-label">9:00AM</span>
<input class="textBox" type="text">
<button id="9" class="btn saveBtn">Save</button>
</div>
<div id="10AM" class="time-block">
<span class="time-label">10:00AM</span>
<input class="textBox" type="text">
<button id="10" class="btn saveBtn">Save</button>
</div>
<div id="11AM" class="time-block">
<span class="time-label">11:00AM</span>
<input class="textBox" type="text">
<button id="11" class="btn saveBtn">Save</button>
</div>
<div id="12PM" class="time-block">
<span class="time-label">12:00PM</span>
<input class="textBox" type="text">
<button id="12" class="btn saveBtn">Save</button>
</div>
<div id="1PM" class="time-block future">
<span class="time-label">1:00PM</span>
<input class="textBox" type="text">
<button id="13" class="btn saveBtn">Save</button>
</div>
<div id="2PM" class="time-block future">
<span class="time-label">2:00PM</span>
<input class="textBox" type="text">
<button id="14" class="btn saveBtn">Save</button>
</div>
<div id="3PM" class="time-block future">
<span class="time-label">3:00PM</span>
<input class="textBox" type="text">
<button id="15" class="btn saveBtn">Save</button>
</div>
<div id="4PM" class="time-block future">
<span class="time-label">4:00PM</span>
<input class="textBox" type="text">
<button id="16" class="btn saveBtn">Save</button>
</div>
<div id="5PM" class="time-block future">
<span class="time-label">5:00PM</span>
<input class="textBox" type="text">
<button id="17" class="btn saveBtn">Save</button>
</div>
<div id="6PM" class="time-block future">
<span class="time-label">6:00PM</span>
<input class="textBox" type="text">
<button id="18" class="btn saveBtn">Save</button>
</div>
<div id="7PM" class="time-block future">
<span class="time-label">7:00PM</span>
<input class="textBox" type="text">
<button id="19" class="btn saveBtn">Save</button>
</div>
<div id="8PM" class="time-block future">
<span class="time-label">8:00PM</span>
<input class="textBox" type="text">
<button id="20" class="btn saveBtn">Save</button>
</div>
<div id="9PM" class="time-block future">
<span class="time-label">9:00PM</span>
<input class="textBox" type="text">
<button id="21" class="btn saveBtn">Save</button>
</div>
<div id="10PM" class="time-block future">
<span class="time-label">10:00PM</span>
<input class="textBox" type="text">
<button id="22" class="btn saveBtn">Save</button>
</div>
<div id="11PM" class="time-block future">
<span class="time-label">11:00PM</span>
<input class="textBox" type="text">
<button id="23" class="btn saveBtn">Save</button>
</div>
<div id="12AM" class="time-block future">
<span class="time-label">12:00AM</span>
<input class="textBox" type="text">
<button id="24" class="btn saveBtn">Save</button>
</div>
</div>
<script src="https://code.jquery.com/jquery-3.4.1.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/moment.js/2.24.0/moment.min.js"></script>
<script src="https://code.jquery.com/ui/1.13.1/jquery-ui.js"></script>
<script src="./script.js"></script>
</body>
</html>