OLD | NEW |
(Empty) | |
| 1 <!DOCTYPE html> |
| 2 |
| 3 <html> |
| 4 <head> |
| 5 <meta charset="utf-8"> |
| 6 <title>Dart Style Sandbox</title> |
| 7 <link rel="stylesheet" href="style.css"> |
| 8 </head> |
| 9 <body> |
| 10 <h2>Before</h2> |
| 11 <div class="code-area"> |
| 12 <textarea id="before" cols="100" rows="10">// Enter code here: |
| 13 main () { |
| 14 print("Hello, world!");}</textarea><br/> |
| 15 </div> |
| 16 <label for="width">Page Width</label> |
| 17 <input type="range" id="width" min="10" value="80" max="100" step="1" style=
"width: 400px;"> |
| 18 <output for="width" id="width-output">80</output> |
| 19 <h2>After</h2> |
| 20 <div class="code-area"> |
| 21 <pre class="column-marker"> |
| 22
| 80 columns |
| 23 </pre> |
| 24 <textarea id="after" cols="100" rows="30" readonly></textarea> |
| 25 </div> |
| 26 <script type="application/dart" src="main.dart"></script> |
| 27 <script src="packages/browser/dart.js"></script> |
| 28 </body> |
| 29 </html> |
OLD | NEW |