index.html 619 B

1234567891011121314151617181920212223
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8" />
  5. <meta http-equiv="X-UA-Compatible" content="IE=edge" />
  6. <meta name="viewport" content="width=device-width, initial-scale=1.0" />
  7. <title>Tauri</title>
  8. </head>
  9. <body>
  10. <h1>index.html</h1>
  11. <select id="route">
  12. <option value="secondary.html">secondary.html</option>
  13. <option value="nested/index.html">nested/index.html</option>
  14. <option value="nested/secondary.html">nested/secondary.html</option>
  15. </select>
  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>