-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSimplyst.html
More file actions
36 lines (34 loc) · 1.21 KB
/
Simplyst.html
File metadata and controls
36 lines (34 loc) · 1.21 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
<!DOCTYPE html>
<html>
<head>
<script src="task.js"></script>
<script src='checkboxes.js'></script>
<script src='pretty.js'></script>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class= "container" id="container">
<div class = "todo">
<h1>To Do</h1>
</div>
<div class = "today">
<h2>Today</h2>
</div>
<div class = "upcoming">
<h2>Upcoming</h2>
</div>
<div class= "general">
<h2>General</h2>
</div>
<button type='button' id='taskButton' onclick='newTask()' onmouseover='outlineTaskButton()'>New Task</button>
<div class="dropdown">
<button type='button' id='menuButton' onclick='dropDown()' onmouseover='outlineMenuButton()' class="dropbtn">Menu</button>
<div id="myDropdown" class="dropdown-content">
<h1><button type='button' id='themeButton' onclick='changeThemeDefault()'>Change Theme Default</h1>
<h4><button type='button' id='themeButton4' onclick='changeThemeDusk()'>Change Theme Dusk</h4>
<h2><button type='button' id='themeButton2' onclick='changeThemeTurquoise()'>Change Theme Turquoise</h2>
<h3><button type='button' id='themeButton3' onclick='changeThemeFire()'>Change Theme Fire</h3>
</div>
</div>
</body>
</html>