This repository has been archived on 2022-12-05. You can view files and clone it, but cannot push or open issues or pull requests.
GeometryDash3D/index.html
2022-11-08 09:35:45 +01:00

25 lines
693 B
HTML

<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Moteur de jeu • Projet</title>
<style>
body {
margin: 0px;
}
canvas {
border: 1px solid black;
}
</style>
</head>
<body>
<canvas id="canvas" width="1280" height="720"></canvas>
<script src="https://unpkg.com/three@0.146.0/build/three.min.js"></script>
<script type="module" src="./js/main.js"></script>
</body>
</html>