19 lines
337 B
HTML
19 lines
337 B
HTML
|
<!DOCTYPE html>
|
||
|
<html>
|
||
|
|
||
|
<head>
|
||
|
<meta http-equiv="Content-type" content="text/html; charset=utf-8" />
|
||
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||
|
<title>Tour - Iced</title>
|
||
|
</head>
|
||
|
|
||
|
<body>
|
||
|
<script type="module">
|
||
|
import init from "./tour/tour.js";
|
||
|
|
||
|
init('./tour/tour_bg.wasm');
|
||
|
</script>
|
||
|
</body>
|
||
|
|
||
|
</html>
|