-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
26 lines (26 loc) · 1.05 KB
/
index.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
<!DOCTYPE html>
<html>
<head>
<title>Sample WebApp</title>
<script src='lib/jquery-1.5.1.min.js' type='text/javascript'></script>
<script src='lib/jquery-ui-1.8.12.custom.min.js' type='text/javascript'></script>
<script src='lib/underscore.js' type='text/javascript'></script>
<script src='lib/backbone.js' type='text/javascript'></script>
<script src='mvc.js' type='text/javascript'></script>
<link href='lib/jquery-ui-1.8.12.custom.css' media='screen, projection, print' rel='stylesheet' type='text/css'>
<link href='stylesheets/screen.css' media='screen, projection' rel='stylesheet' type='text/css'>
<link href='stylesheets/print.css' media='print' rel='stylesheet' type='text/css'>
</head>
<body>
<div class='content'>
<h1>Quick Todo</h1>
<ul id='todos'></ul>
<div id='newitem' style='display:none'>
<input type='text'>
<button id='yes'>Add</button>
<button id='no'>Cancel</button>
</div>
<button id='newitembtn'>Add a new item</button>
</div>
</body>
</html>