Files
simplecal/index.html

30 lines
810 B
HTML
Raw Permalink Normal View History

2020-09-12 03:43:21 +00:00
<!DOCTYPE html>
<html>
<head>
<title>SimpleCal</title>
<meta charset="utf-8">
<meta http-equiv="refresh" content="50000">
2020-09-12 05:21:48 +00:00
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="theme-color" content="#000000">
2020-09-12 03:43:21 +00:00
<link rel="stylesheet" href="simplecal.css">
<link rel="icon" href="icon.png">
</head>
<body>
<div id="current">
<div id="currentName"></div>
<div id="currentLeft"></div>
</div>
<div id="next">
<div id="nextTitle">Next:</div>
<div id="nextName"></div>
</div>
<script src="simplecal.js"></script>
<script async defer src="https://apis.google.com/js/api.js"
onload="this.onload=function() {}; handleClientLoad();"
onreadystatechange="if (this.readyState === 'complete') this.onload();">
</script>
</body>
</html>