p5winter/index.html

28 lines
586 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<style>
body {
margin: 0;
padding: 0;
}
main {
width: 100vw;
height: 100vh;
display: flex;
align-items: center;
justify-content: center;
}
</style>
</head>
<body>
<script src="./ext/p5.min.js"></script>
<script src="./ext/p5.sound.min.js"></script>
<!-- module type allows import+export-->
<script src="main.js" type="module"></script>
</body>
</html>