This repository has been archived by the owner on Jun 8, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
39 lines (39 loc) · 1.75 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
<!DOCTYPE html>
<html lang="en-us">
<head>
<meta charset="UTF-8">
<title>What Day Is It?</title>
<script type="text/javascript">
var host = "simplemetar.tk";
if ((host == window.location.host) && (window.location.protocol != "https:"))
window.location.protocol = "https";
</script>
<link rel="canonical" href=" { { site.url } }{ { page.url } }" />
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="See what day it is at Colonel By Secondary School.">
<link rel="stylesheet" type="text/css" href="stylesheets/stylesheet.css" media="screen">
<link rel="apple-touch-icon" href="favicons/icon-180-apple.png">
<link rel="apple-touch-icon-precomposed" href="favicons/icon-180-apple.png">
<link rel="icon" type="image/png" sizes="128x128" href="favicons/icon-128.png">
<link rel="icon" type="image/png" sizes="64x64" href="/favicons/icon-64.png">
<meta name="msapplication-TileColor" content="#FFFFFF">
<meta name="msapplication-TileImage" content="/favicons/icon-180.png">
<meta name="theme-color" content="#FFFFFF">
<script src="https://www.promisejs.org/polyfills/promise-7.0.4.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/moment.js/2.18.1/moment.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.2.1/jquery.slim.min.js"></script>
<script type="text/javascript" src="scripts/script.js"></script>
</head>
<body>
<div id="content">
<div id="sentence">TODAY IS A</div>
<div id="day">
...
</div>
</div>
<div id="footer">
<!-- source on <a href="https://github.com/cheeseisdisgusting/cb-days/">GitHub</a> <br> -->
by <a href="https://github.com/cheeseisdisgusting/">cheeseisdisgusting</a>
</div>
</body>
</html>