123456789101112131415161718192021 |
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="UTF-8" />
- <meta name="viewport" content="width=device-width, initial-scale=1.0" />
- <title>Tauri</title>
- </head>
- <body>
- <h1>index.html</h1>
- <select id="route">
- <option value="secondary.html">secondary.html</option>
- <option value="nested/index.html">nested/index.html</option>
- <option value="nested/secondary.html">nested/secondary.html</option>
- </select>
- <button id="open-window">New window</button>
- <button id="go">Go</button>
- <a id="link" href="secondary.html">Go</a>
- <script src="index.js"></script>
- </body>
- </html>
|