Skip to content

Instantly share code, notes, and snippets.

@masazdream
Created November 17, 2013 13:03
Show Gist options
  • Select an option

  • Save masazdream/7513119 to your computer and use it in GitHub Desktop.

Select an option

Save masazdream/7513119 to your computer and use it in GitHub Desktop.
<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