mirror of
https://github.com/Sheldan/canvas.git
synced 2026-05-19 21:57:46 +00:00
21 lines
380 B
HTML
21 lines
380 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>Orbits</title>
|
|
<style>
|
|
html, body {
|
|
height: 100%;
|
|
margin: 0;
|
|
}
|
|
|
|
.container {
|
|
height: 100%;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<script type="module" src="js/main.js"></script>
|
|
<div class="container" id="container"></div>
|
|
</body>
|
|
</html> |