index.html 499 B

1234567891011121314
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="UTF-8">
  5. <!-- https://developer.mozilla.org/en-US/docs/Web/HTTP/CSP -->
  6. <meta http-equiv="Content-Security-Policy" content="default-src 'self'; script-src 'self'; style-src 'self' 'unsafe-inline'">
  7. <link href="./styles.css" rel="stylesheet">
  8. <title>Custom Titlebar App</title>
  9. </head>
  10. <body>
  11. <!-- mount your title bar at the top of you application's body tag -->
  12. <div class="titlebar">Cool titlebar</div>
  13. </body>
  14. </html>