-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathch1ex3.html
27 lines (24 loc) · 876 Bytes
/
ch1ex3.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Ch1Ex3: Your First Canvas Application</title>
<link rel="stylesheet" href="base.css">
<!-- We don't include the modernizer because Dart only supports "The modern web" -->
</head>
<body>
<div id="container">
<canvas id="canvasOne" width="500" height="300">
Your browser does not support HTML 5 Canvas.
</canvas>
</div>
<!--
Since dart VM usually runs after the page is initially rendered, we
keep our scripts just prior to the end of the body. This helps when
compiled to javascript for consistancy.
-->
<script type="application/dart" src="ch1ex3.dart"></script>
<!-- for this next line to work, your pubspec.yaml file must have a dependency on 'browser' -->
<script src="packages/browser/dart.js"></script>
</body>
</html>