ethanpisani.com/threejs-test/index.html
2021-04-09 14:05:27 -04:00

23 lines
355 B
HTML

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>My first three.js app</title>
<style>
body {
margin: 0;
}
canvas{
display: block;
width: 100%;
height: 100%;
}
</style>
</head>
<body>
<script type="module" src="./help.js"></script>
</body>
</html>