2021-05-03 20:42:40 +03:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html lang="en">
|
2021-07-04 01:48:04 +03:00
|
|
|
<head>
|
|
|
|
<meta charset="UTF-8" />
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
|
|
<title>Tauri</title>
|
|
|
|
</head>
|
2021-05-03 20:42:40 +03:00
|
|
|
|
2021-07-04 01:48:04 +03:00
|
|
|
<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>
|
2021-05-03 20:42:40 +03:00
|
|
|
</html>
|