1234567891011121314151617181920212223 |
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="UTF-8" />
- <meta http-equiv="X-UA-Compatible" content="IE=edge" />
- <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="go">Go</button>
- <a id="link" href="secondary.html">Go</a>
- <script src="index.js"></script>
- </body>
- </html>
|