-
Notifications
You must be signed in to change notification settings - Fork 0
/
home.html
34 lines (33 loc) · 1.09 KB
/
home.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title>New Tab</title>
<meta name="description" content="">
<meta name="viewport" content="width=device-width">
<link rel="stylesheet" href="css/style.css">
<script src="https://ssl.google-analytics.com/ga.js" type="text/javascript"></script>
</head>
<body >
<div id="timeapp"></div>
<script id="welcome-template" type="text/x-handlebars-template">
<form>
<footer>
<button type="submit" id="welcomebutton">Let`s begin!</button>
</footer>
<form>
</script>
<script id="time-template" type="text/x-handlebars-template">
<h1 class="time-label">TIME LEFT IN DAY</h1>
<div id="count"><h2 class="count" >{{hour}}:{{minute}}:{{second}}:{{milliseconds}}</h2></div>
<br>
<h1 class="quote-label">{{quote}}</h1>
</script>
<script type="text/javascript" src="app/quotes.json"></script>
<script src="js/handlebars.js"></script>
<script src="app/timeapp.js"></script>
<script src="app/Mode.js"></script>
<input id="mode" value="Dark Mode" type="button"/>
</body>
</html>