mirror of
https://github.com/EthanPisani/ethanpisani.com.git
synced 2025-07-02 18:15:18 -04:00
23 lines
355 B
HTML
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>
|