-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
28 lines (28 loc) · 1.27 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
<!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://cdn.jsdelivr.net/npm/bootstrap@4.6.x/dist/css/bootstrap.min.css" />
<link rel="stylesheet" href="./assets/css/style.css" />
<title>Work Day Scheduler</title>
<link rel="icon" href="./assets/css/kape.gif" />
</head>
<body>
<!-- Lightweight, flexible component for showcasing hero unit style content.-->
<div class="jumbotron">
<h1 class="d-lg-left">☕ My Daily Agenda ☕</h1>
<p class="lead d-md-left">A calendar app for scheduling your work day.</p>
<p id="currentDay" class="lead text-md-left"></p>
</div>
<div class="container">
<!-- Time blocks go here -->
</div>
<p class="text-center" style="color:#F8ECD1">Made with ❤️️ by Jonathan Fadera</p>
<p class="text-center" style="color:#F8ECD1"> ©2023 </p>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/moment.js/2.24.0/moment.min.js"></script>
<script src="./assets/js/script.js"></script>
</body>
</html>