-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
40 lines (38 loc) · 2.03 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title id="title">Days Since Date - Online Calculator App</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="css/index.css">
<link rel="apple-touch-icon" sizes="120x120" href="img/favicon120.png">
<link rel="icon" type="image/png" sizes="32x32" href="img/favicon32png">
<link rel="icon" type="image/png" sizes="64x64" href="img/favicon64.png">
<link rel="shortcut icon" href="img/favicon32.ico">
<link rel="manifest" href="manifest.webmanifest" crossorigin="use-credentials">
</head>
<body>
<div id="container" class="centered">
<div id="status_set" style="display:none;" class="centered">
<h2><span id="result"><b>day(s)</b></span></h2>
<h3>since <span id="result_from_date"></span></h3>
<button id="reset_button" class="button">Reset</button>
</div>
<div id="status_unset" class="centered">
<h2>New begining!</h2>
</div>
<div id="calendar" class="centered">
<!-- <input type="date" id="start_date" onfocus="this.showPicker()" onclick="this.clearfocus()">-->
<input type="date" id="start_date">
<button id="set_button">Set Date</button>
</div>
</div>
<p>Note: Open the hamburger menu next to the URL bar and click <!-- <button class="add_to_home_screen" >Add to Home Screen</button>--> <b>Add to Home Screen</b> or <b>Install</b> to add to your mobile's desktop for future reference (or bookmark this web site after setting a date).</p>
<div id="status_fireworks" style="display:none;" class="demo centered">
</div>
<script src="js/jquery-3.1.1.min.js"></script>
<script src="js/index.js"></script>
<script src="js/jquery-fireworks.js"></script>
<script src="js/service_worker.js"></script>
</body>
</html>