| OLD | NEW |
| 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> |
| OLD | NEW |