Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(505)

Side by Side Diff: src/site/docs/tutorials/add-elements/examples/todo/todo.html

Issue 26542002: edit pass on T3,4,5, updated images (Closed) Base URL: https://github.com/dart-lang/dartlang.org.git@master
Patch Set: merging with master Created 7 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(Empty)
1 <!DOCTYPE html>
2
3 <html>
4 <head>
5 <meta charset="utf-8">
6 <title>Todo</title>
7 <link rel="stylesheet" href="todo.css">
8 </head>
9 <body>
10 <h2>Procrastinator's Todo</h2>
11
12 <div>
13 <input id="to-do-input" type="text" placeholder="What needs to be done?"> </input>
14 </div>
15
16 <div>
17 <ul id="to-do-list">
18 </ul>
19 </div>
20
21 <script type="application/dart" src="todo.dart"></script>
22 <script src="packages/browser/dart.js"></script>
23 </body>
24 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698