index.html 640 B

123456789101112131415161718192021
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8" />
  5. <meta name="viewport" content="width=device-width, initial-scale=1.0" />
  6. <title>Tauri</title>
  7. </head>
  8. <body>
  9. <h1>index.html</h1>
  10. <select id="route">
  11. <option value="secondary.html">secondary.html</option>
  12. <option value="nested/index.html">nested/index.html</option>
  13. <option value="nested/secondary.html">nested/secondary.html</option>
  14. </select>
  15. <button id="open-window">New window</button>
  16. <button id="go">Go</button>
  17. <a id="link" href="secondary.html">Go</a>
  18. <script src="index.js"></script>
  19. </body>
  20. </html>