-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
51 lines (45 loc) · 1.82 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
<!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="./Assets/style.css" />
<title>Work Day Scheduler</title>
</head>
<body>
<header class="jumbotron">
<div class="holder">
<h1 class="display-3">Daily Scheduler</h1>
<p class="lead">A simple calendar app for scheduling your day</p>
<p id="currentDay" class="lead"></p>
</div>
</header>
<div class="container">
</div>
<footer>
<div class="footholder">
2020 ~ Made by <a class="copyright" href="https://github.com/BohdiCave" target="new">Bohdan Pechenyak</a>
<br><br> Print "<a href="https://en.wikipedia.org/wiki/Ship_of_fools" target="new">Narrendans</a> (Stultorum chorea)" (~1560-70) by <a href="https://en.wikipedia.org/wiki/Frans_Hogenberg" target="new">Frans Hogenberg</a>.
<br><br> Image source: <a href="https://www.rijksmuseum.nl/nl/collectie/RP-P-OB-3163" target="new">Rijksmuseum</a>
</div>
</footer>
<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="./Assets/script.js"></script>
</body>
</html>