-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtasq.html
34 lines (32 loc) · 1.32 KB
/
tasq.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>
<link href='http://fonts.googleapis.com/css?family=Josefin+Slab:400,700' rel='stylesheet' type='text/css'>
<head>
<title>TQTasks</title>
<meta charset="utf-8" />
<link rel="stylesheet" href="base.css" type="text/css" />
</head>
<body>
<div>
<button type = "button" id="share">Share</button>
</div>
<div id="container">
<h1><span class = "pretitle">Tasks</span>
<h2>add, delete, rearrange, or clear tasks</h2>
<form id="todo-form">
<input id="todo" type="text" />
<!-- <input id="submit" type="submit" value="Add to List">-->
</form>
<ul id="show-items"></ul>
<a href="#" id="clear-all">Clear All</a>
</div>
<script src="jquery-1.4.4.min.js"></script>
<script src="jquery-ui-1.8.7.custom.min.js"></script>
<script src="jquery.inlineedit.js"></script>
<script src="pubsub.js"></script>
<script src="getPathPlus.min.js"></script>
<script type="text/javascript" src="https://omlet.me/a/js/omlet.js"></script>
<script src="base2.js"></script>
</body>
</html>
<!-- add subtasks, checkboxes, social/sharing features, upload to email, export as .doc, .pdf, .png etc. -->