-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdefault.html
More file actions
32 lines (28 loc) · 909 Bytes
/
default.html
File metadata and controls
32 lines (28 loc) · 909 Bytes
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>Tasker</title>
<!-- WinJS references -->
<link href="Microsoft.WinJS.3.0/css/ui-dark.css" rel="stylesheet" />
<script src="Microsoft.WinJS.3.0/js/base.js"></script>
<script src="Microsoft.WinJS.3.0/js/ui.js"></script>
<!-- Application references -->
<link href="default.css" rel="stylesheet" />
<script src="default.js"></script>
</head>
<body>
<div class="header">
<h1>Tasker</h1>
<p>A web application to keep goals in mind!</p>
</div>
<button id="addTask">New Task </button>
<div id="taskList" class="output">
</div>
<div id="addTaskFlyout" data-win-control="WinJS.UI.Flyout">
<div>New Task Info</div>
<input id="taskName" type="text" tabindex="-1" placeholder="Enter your task name">
<button id="createTask">Create Task</button>
</div>
</body>
</html>