OLD | NEW |
(Empty) | |
| 1 <!-- Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 2 for details. All rights reserved. Use of this source code is governed by a |
| 3 BSD-style license that can be found in the LICENSE file. |
| 4 --> |
| 5 |
| 6 <!DOCTYPE html> |
| 7 |
| 8 <html> |
| 9 <head> |
| 10 <meta charset="utf-8"> |
| 11 <title>Pirate badge</title> |
| 12 <link rel="stylesheet" href="../piratebadge.css"> |
| 13 </head> |
| 14 <body> |
| 15 <h1>Pirate badge</h1> |
| 16 |
| 17 <div class="widgets"> |
| 18 <div> |
| 19 <input type="text" id="inputName" maxlength="15"> |
| 20 </div> |
| 21 </div> |
| 22 <div class="badge"> |
| 23 <div class="greeting"> |
| 24 Arrr! Me name is |
| 25 </div> |
| 26 <div class="name"> |
| 27 <span id="badgeName"> </span> |
| 28 </div> |
| 29 </div> |
| 30 <script type="application/dart" src="piratebadge.dart"></script> |
| 31 <script src="../packages/browser/dart.js"></script> |
| 32 </body> |
| 33 </html> |
OLD | NEW |