-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
129 lines (129 loc) · 4.91 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
127
128
129
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<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
rel="stylesheet"
href="https://fonts.googleapis.com/css2?family=Carter+One&display=swap"
/>
<link
rel="stylesheet"
href="https://fonts.googleapis.com/css2?family=Limelight&display=swap"
/>
<link
rel="stylesheet"
href="https://fonts.googleapis.com/css2?family=Yanone+Kaffeesatz&display=swap"
/>
<link rel="stylesheet" href="style.css" />
<link rel="shortcut icon" type="image/png" href="./images/logo.png?" />
<title>Work Day Scheduler</title>
</head>
<body>
<!-- Heading -->
<header class="jumbotron-fluid">
<h1>Work Day Scheduler</h1>
<p id="currentDay" class="lead"></p>
<button class="clearDayBtn">Clear Work Day!</button>
</header>
<!-- Container -->
<div class="container">
<!-- 9 AM -->
<div class="row">
<div class="col-2 my-auto hour time-block rounded-0">09:00 AM</div>
<textarea id="9" class="col-6 input rounded-0"></textarea>
<button class="col-2 saveBtn"><i class="fas fa-save"></i></button>
<button class="col-2 deleteBtn">
<i class="fas fa-trash-alt"></i>
</button>
</div>
<!-- 10 AM -->
<div class="row">
<div class="col-2 my-auto hour time-block rounded-0">10:00 AM</div>
<textarea id="10" class="col-6 input rounded-0"></textarea>
<button class="col-2 saveBtn"><i class="fas fa-save"></i></button>
<button class="col-2 deleteBtn">
<i class="fas fa-trash-alt"></i>
</button>
</div>
<!-- 11 AM -->
<div class="row">
<div class="col-2 my-auto hour time-block rounded-0">11:00 AM</div>
<textarea id="11" class="col-6 input rounded-0"></textarea>
<button class="col-2 saveBtn"><i class="fas fa-save"></i></button>
<button class="col-2 deleteBtn">
<i class="fas fa-trash-alt"></i>
</button>
</div>
<!-- 12 PM -->
<div class="row">
<div class="col-2 my-auto hour time-block rounded-0">12:00 PM</div>
<textarea id="12" class="col-6 input rounded-0"></textarea>
<button class="col-2 saveBtn"><i class="fas fa-save"></i></button>
<button class="col-2 deleteBtn">
<i class="fas fa-trash-alt"></i>
</button>
</div>
<!-- 1 PM -->
<div class="row">
<div class="col-2 my-auto hour time-block rounded-0">01:00 PM</div>
<textarea id="13" class="col-6 input rounded-0"></textarea>
<button class="col-2 saveBtn"><i class="fas fa-save"></i></button>
<button class="col-2 deleteBtn">
<i class="fas fa-trash-alt"></i>
</button>
</div>
<!-- 2 PM -->
<div class="row">
<div class="col-2 my-auto hour time-block rounded-0">02:00 PM</div>
<textarea id="14" class="col-6 input rounded-0"></textarea>
<button class="col-2 saveBtn"><i class="fas fa-save"></i></button>
<button class="col-2 deleteBtn">
<i class="fas fa-trash-alt"></i>
</button>
</div>
<!-- 3 PM -->
<div class="row">
<div class="col-2 my-auto hour time-block rounded-0">03:00 PM</div>
<textarea id="15" class="col-6 input rounded-0"></textarea>
<button class="col-2 saveBtn"><i class="fas fa-save"></i></button>
<button class="col-2 deleteBtn">
<i class="fas fa-trash-alt"></i>
</button>
</div>
<!-- 4 PM -->
<div class="row">
<div class="col-2 my-auto hour time-block rounded-0">04:00 PM</div>
<textarea id="16" class="col-6 input rounded-0"></textarea>
<button class="col-2 saveBtn"><i class="fas fa-save"></i></button>
<button class="col-2 deleteBtn">
<i class="fas fa-trash-alt"></i>
</button>
</div>
<!-- 5 PM -->
<div class="row">
<div class="col-2 my-auto hour time-block rounded-0">05:00 PM</div>
<textarea id="17" class="col-6 input rounded-0"></textarea>
<button class="col-2 saveBtn"><i class="fas fa-save"></i></button>
<button class="col-2 deleteBtn">
<i class="fas fa-trash-alt"></i>
</button>
</div>
</div>
<!-- Script Tags -->
<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="script.js"></script>
</body>
</html>