panorama-viewer/index.html

15 lines
333 B
HTML
Raw Normal View History

2022-10-22 15:06:40 +00:00
<!DOCTYPE html>
<html>
<head>
<script type="module" src="panorama-viewer.js"></script>
<script type="module">
import { hello } from "./panorama-viewer.js";
hello();
</script>
</head>
<body>
<h1>Panorama Viewer</h1>
<canvas></canvas>
<img height="400" width="800" src="Provo_River_Falls_360.JPG">
</body>
</html>