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

Side by Side Diff: src/site/docs/tutorials/get-started/examples/clickme/clickme.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: 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
1 <!DOCTYPE html> 1 <!DOCTYPE html>
2 2
3 <html> 3 <html>
4 <head> 4 <head>
5 <meta charset="utf-8"> 5 <meta charset="utf-8">
6 <title>Html test</title> 6 <title>Clickme</title>
7 <link rel="stylesheet" href="html_test.css"> 7 <link rel="stylesheet" href="clickme.css">
8 </head> 8 </head>
9 <body> 9 <body>
10 <h1>Html test</h1> 10 <h1>Clickme</h1>
11 11
12 <p>Hello world from Dart!</p> 12 <p>Hello world from Dart!</p>
13 13
14 <div id="sample_container_id"> 14 <div id="sample_container_id">
15 <p id="sample_text_id"></p> 15 <p id="sample_text_id"></p>
16 </div> 16 </div>
17 17
18 <script type="application/dart" src="html_test.dart"></script> 18 <script type="application/dart" src="clickme.dart"></script>
19 <script src="packages/browser/dart.js"></script> 19 <script src="packages/browser/dart.js"></script>
20 </body> 20 </body>
21 </html> 21 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698