| Index: src/site/articles/trydart/examples/2-inputnamebadge/piratebadge.html | 
| diff --git a/src/site/articles/trydart/examples/2-inputnamebadge/piratebadge.html b/src/site/articles/trydart/examples/2-inputnamebadge/piratebadge.html | 
| new file mode 100644 | 
| index 0000000000000000000000000000000000000000..b39c7dbb26fb4c3476b1b5a5b8329ce029e01963 | 
| --- /dev/null | 
| +++ b/src/site/articles/trydart/examples/2-inputnamebadge/piratebadge.html | 
| @@ -0,0 +1,33 @@ | 
| +<!-- Copyright (c) 2012, the Dart project authors.  Please see the AUTHORS file | 
| +     for details. All rights reserved. Use of this source code is governed by a | 
| +     BSD-style license that can be found in the LICENSE file. | 
| +--> | 
| + | 
| +<!DOCTYPE html> | 
| + | 
| +<html> | 
| +  <head> | 
| +    <meta charset="utf-8"> | 
| +    <title>Pirate badge</title> | 
| +    <link rel="stylesheet" href="../piratebadge.css"> | 
| +  </head> | 
| +  <body> | 
| +    <h1>Pirate badge</h1> | 
| + | 
| +    <div class="widgets"> | 
| +      <div> | 
| +        <input type="text" id="inputName"> | 
| +      </div> | 
| +    </div> | 
| +    <div class="badge"> | 
| +      <div class="greeting"> | 
| +        Arrr! Me name is | 
| +      </div> | 
| +      <div class="name"> | 
| +        <span id="badgeName"> </span> | 
| +      </div> | 
| +    </div> | 
| +    <script type="application/dart" src="piratebadge.dart"></script> | 
| +    <script src="../packages/browser/dart.js"></script> | 
| +  </body> | 
| +</html> | 
|  |