17 lines
373 B
HTML
17 lines
373 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<title>Audioview</title>
|
|
<script src="/wasm/audioview_player.js"></script>
|
|
<script type="module">
|
|
import init from "/wasm/audioview_core.js";
|
|
init();
|
|
</script>
|
|
<script src="app.js"></script>
|
|
<link rel="shortcut icon" href="#" />
|
|
</head>
|
|
<body>
|
|
</body>
|
|
</html>
|