28 lines
504 B
HTML
28 lines
504 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>Task2 vanilla - Solar System</title>
|
|
<style>
|
|
html,
|
|
body {
|
|
margin: 0;
|
|
background: white;
|
|
width: 100%;
|
|
height: 100%;
|
|
overflow: hidden;
|
|
}
|
|
|
|
canvas {
|
|
display: block;
|
|
width: 100%;
|
|
height: 100%;
|
|
}
|
|
</style>
|
|
</head>
|
|
|
|
<body> <script type="module" src="/main.js"></script>
|
|
</body>
|
|
|
|
</html> |