13 lines
266 B
HTML
13 lines
266 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>Minecraft Item Viewer</title>
|
|
<style>
|
|
body { margin: 0; overflow: hidden; }
|
|
canvas { display: block; }
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<script type="module" src="./three-item.ts"></script>
|
|
</body>
|
|
</html>
|