-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathch2ex21.html
27 lines (24 loc) · 864 Bytes
/
ch2ex21.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>Ch2Ex21 radial Gradients #1</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="canvas" width="500" height="500">
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="ch2ex21.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>