forked from jimschubert/NewTab-Redirect
-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.html
37 lines (28 loc) · 1.1 KB
/
main.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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>colors-of-the-day</title>
<meta name="description" content="help your day-of-the-week sense">
<link rel="icon" href="icon/favicon.ico">
<!-- bootstrap -->
<!-- Latest compiled and minified CSS -->
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/3.4.1/css/bootstrap.min.css"
integrity="sha384-HSMxcRTRxnN+Bdg0JdbxYKrThecOKuH5zCYotlSAcp1+c8xmyTe9GYg1l9a69psu" crossorigin="anonymous">
<!-- Optional theme -->
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/3.4.1/css/bootstrap-theme.min.css"
integrity="sha384-6pzBo3FDv/PJ8r2KRkGHifhEocL+1X2rVCTTkUfGk7/0pbek5mMa1upzvWbrUbOZ" crossorigin="anonymous">
<!-- bootstrap end-->
<link rel="stylesheet" href="css/today.css">
<script src="js/today.js"></script>
</head>
<body class="body">
<div class="container">
<p>
<span id="date">00/00</span>
<span id="week">The-day</span>
</p>
<p id="time">00:00:00</p>
</div>
</body>
</html>