OLD | NEW |
(Empty) | |
| 1 <!DOCTYPE html> |
| 2 |
| 3 <!-- |
| 4 Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 5 for details. All rights reserved. Use of this source code is governed by a |
| 6 BSD-style license that can be found in the COPYING file. |
| 7 --> |
| 8 |
| 9 <html> |
| 10 <head> |
| 11 <meta charset="utf-8"> |
| 12 <title>A Simple ToDo List Using HTML5 IndexedDB</title> |
| 13 <link rel="stylesheet" href="todo.css"> |
| 14 </head> |
| 15 <body> |
| 16 <input type="text" id="todo" name="todo" |
| 17 placeholder="What do you need to do?"> |
| 18 <input type="submit" id="submit" value="Add Todo Item"> |
| 19 <ul id="todo-items"></ul> |
| 20 <script type="application/dart" src="todo.dart"></script> |
| 21 <script src="packages/browser/dart.js"></script> |
| 22 </body> |
| 23 </html> |
OLD | NEW |