Created
November 17, 2013 13:03
-
-
Save masazdream/7513119 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <html> | |
| <head> | |
| <meta charset="utf-8"> | |
| <title>A Minimalist App</title> | |
| <link rel="stylesheet" href="helloworld.css"> | |
| </head> | |
| <body> | |
| <h1>A Minimalist App</h1> | |
| <p>Hello world from Dart!</p> | |
| <div id="sample_container_id"> | |
| <p id="sample_text_id"></p> | |
| </div> | |
| <script type="application/dart" src="helloworld.dart"></script> ←対応するdartファイルを指定する | |
| <script src="packages/browser/dart.js"></script> | |
| </body> | |
| </html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment