-
Notifications
You must be signed in to change notification settings - Fork 0
/
DartTODO.html
44 lines (36 loc) · 1001 Bytes
/
DartTODO.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
35
36
37
38
39
40
41
42
43
44
<!DOCTYPE html>
<html>
<head>
<title>DartTODO</title>
<link rel="stylesheet" type="text/css" href="css/style.css" media="screen" />
</head>
<body>
<script type="application/dart" src="DartTODO.dart"></script>
<script src="http://dart.googlecode.com/svn/branches/bleeding_edge/dart/client/dart.js"></script>
<!-- CONTAINER START -->
<div id="container">
<!-- HEADER START -->
<div id="header">
<h1>Dart TODO</h1>
</div>
<!-- HEADER STOP -->
<!-- BODY START -->
<div id="body">
<div id="messages"></div>
<form>
<label for="newTask">New task:</label>
<input type="text" id="newTask" />
<div id="addNewTask">Add task</div>
</form>
<div id="tasks">
</div>
</div>
<!-- BODY STOP -->
<!-- FOOTER START -->
<div id="footer">
</div>
<!-- FOOTER STOP -->
</div>
<!-- CONTAINER STOP -->
</body>
</html>