-
Notifications
You must be signed in to change notification settings - Fork 3
/
help.html
27 lines (27 loc) · 1.27 KB
/
help.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>Todo App v0.1</title>
<link rel="shortcut icon" href="favicon.ico">
<link rel="stylesheet" href="css/style.css" type="text/css" />
</head>
<body>
<div class="wrapper">
<div id="help">
<h3>What is this?</h3>
<p>Todo App is a simple and beautiful web app for creating and managing todo lists.</p>
<h3>How does it work?</h3>
<p>It's built in HTML5 and Javascript, using local storage to save your todos in the browser instead of in a web server, which makes the app availible offline aswell.</p>
<h3>Why doesn't it work?</h3>
<p>Are you using Internet Explorer? No? Try <a href="#reset" onclick="reset();">pressing here</a>. This should reset the Todo App, and make it functional again. However, all your current todos will be lost. Sorry.</p>
<h3>Who created this Todo app?</h3>
<p>Todo App is created by Filip Stefansson at <a href="http://pixby.se">Pixby Media</a>. You can find him on <a href="http://twitter.com/filipstefansson/">Twitter</a>.</p>
<a href="/" class="button">Take me back »</a>
</div>
</div>
<script src="js/jquery.js"></script>
<script src="js/jqueryui.js"></script>
<script src="js/script.js"></script>
</body>
</html>