Skip to content
Snippets Groups Projects
Select Git revision
  • d5f18ace16f6e6a0664c0de5a8148506926072c3
  • tutorial-12 default
  • tutorial-10
  • tutorial-11
  • tutorial-9
  • tutorial-8
  • tutorial-7
  • tutorial-6
  • tutorial-5
  • tutorial-4
  • tutorial-3
  • tutorial-2
  • tutorial-1
  • main protected
14 results

index.html

Blame
  • Code owners
    Assign users and groups as approvers for specific file changes. Learn more.
    index.html 230 B
    <!-- index.html -->
    <html>
      <body>
        <div id="app"></div>
        <script type="text/javascript">
            const app = document.getElementById('app');
            app.innerHTML = '<h1>Hello World!</h1>';
        </script>
      </body>
    </html>