template.html 478 B

1234567891011121314
  1. <!doctype html>
  2. <html>
  3. <head>
  4. <title>Static File Broker Test App</title>
  5. <link rel="stylesheet" type="text/css" href="http://localhost:8000/css/style.css" />
  6. <script type="text/javascript" src="http://localhost:8000/js/test.js"></script>
  7. </head>
  8. <body>
  9. <p>An image should be shown below:</p>
  10. <img src="http://localhost:8000/img/test.png" alt="test.png" onclick="testjs()" />
  11. <p>If you click the image, a dialog should pop up</p>
  12. </body>
  13. </html>