mirror of
https://github.com/tauri-apps/web-view.git
synced 2026-02-04 18:31:17 +01:00
17 lines
489 B
HTML
17 lines
489 B
HTML
<!doctype html>
|
|
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>blue</title>
|
|
<link rel="stylesheet" href="css/styles.css">
|
|
</head>
|
|
<body id="blue-body">
|
|
<button class="index" onclick="changePage('index')">index</button>
|
|
<button class="red" onclick="changePage('red')">RED</button>
|
|
<button class="green" onclick="changePage('green')">GREEN</button>
|
|
<button class="blue" onclick="changePage('blue')">BLUE</button>
|
|
|
|
<script src="js/scripts.js"></script>
|
|
</body>
|
|
</html> |