| 123456789101112131415161718192021222324252627282930 | <!DOCTYPE html><html>  <head>    <title>Amber presentation</title>    <meta http-equiv="content-type" content="text/html; charset=utf-8" />    <meta name="author" content="Nicolas Petton and others" />    <script type='text/javascript' src='the.js'></script>  </head>  <body>  <p>Hi, Nicolas Petton and others! Welcome to Amber project: "Amber presentation".</p>  <p>This is the place for your application's HTML. After getting familiar with Amber,      just remove this welcome contents from index.html and replace it with your own.</p>  <button id="amber-with">Hello from TagBrush >> with:</button>  <button id="jquery-append">Hello from jQuery append</button>  <ol id="output-list"></ol>  <script type='text/javascript'>      require(['app'], function (amber) {          amber.initialize({            //used for all new packages in IDE            'transport.defaultAmdNamespace': "amber-presentation"          });          require(["amber-ide-starter-dialog"], function (dlg) { dlg.start(); });          amber.globals.Presentation._start();      });  </script>  </body></html>
 |