mirror of
https://github.com/tauri-apps/tauri.git
synced 2024-12-14 13:21:01 +03:00
23 lines
700 B
HTML
23 lines
700 B
HTML
<!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="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>
|