-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
80 lines (80 loc) · 2.75 KB
/
index.html
File metadata and controls
80 lines (80 loc) · 2.75 KB
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Test comment -->
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link rel="stylesheet" href="node_modules/@fortawesome/fontawesome-free/css/all.min.css">
<link rel="stylesheet" href="node_modules/material-design-lite/material.min.css">
<script src="node_modules/material-design-lite/material.min.js"></script>
<link rel="stylesheet" href="src/css/radio_button.css">
<link rel="stylesheet" href="src/css/collision_button.css">
<link rel="stylesheet" href="src/css/style.css">
<script src="src/js/clock.js"></script>
<script src="src/js/todo.js"></script>
<script src="src/js/animations.js"></script>
<script src="src/js/options.js"></script>
<script src="src/js/themes.js"></script>
<script src="src/js/main.js"></script>
<title>New Tab</title>
</head>
<body>
<div class="settings-gear">
<i id="settings-toggler" class="fas fa-cog"></i>
</div>
<div class="settings">
<div class="exit">
<i id="exit-options" class="fas fa-times"></i>
</div>
<div class="clock-settings">
<h3>Clock Format</h3>
<div id="radios">
<label for="24" class="radio">
<input type="radio" name="format" id="24" value="24"/>
<span>24</span>
</label>
<label for="12" class="radio">
<input type="radio" name="format" id="12" value="12"/>
<span>12</span>
</label>
</div>
</div>
<div class="theme-settings">
<h3>Themes</h3>
<button id="0" class="btn-collision theme-option">Classic</button>
<button id="1" class="btn-collision theme-option">Minty Fresh</button>
<button id="2" class="btn-collision theme-option">Green Delight</button>
<button id="3" class="btn-collision theme-option">Blue Night</button>
</div>
</div>
<div class="container">
<div class="text-center">
<h2 class="clock"></h2>
</div>
<div class="text-center todo-area">
<div class="todo-add">
<form id="input">
<div class="mdl-textfield mdl-js-textfield">
<input class="mdl-textfield__input" type="text" id="add" autocomplete="off">
<label class="mdl-textfield__label" for="add">What needs to be done today?</label>
</div>
<button id="submit"><i class="fas fa-plus"></i></button>
</form>
</div>
<div class="todo-list content">
<ul class="list">
<!-- Todo items will be added here! -->
</ul>
</div>
</div>
</div>
<div class="footer">
<p>
<a href="http://hacktohelp.co">
<img src="src/imgs/h2h.png" alt="Hack to Help" class="logo">
</a>
</p>
</div>
</body>
</html>