pixels/examples/minimal-web/index.html
Jay Oster b185ec32e9
Initial WebGL2 support. (#218)
Co-authored-by: MarkAnthonyM <37249494+MarkAnthonyM@users.noreply.github.com>
2021-11-16 11:37:56 -08:00

25 lines
519 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<style type="text/css">
body {
background-color: #000;
margin: 0;
overflow: hidden;
}
</style>
<title>Hello Pixels + Web</title>
</head>
<body>
<script type="module">
import init from "./minimal-web.js";
window.addEventListener("load", () => {
init();
});
</script>
</body>
</html>