19 lines
551 B
HTML
19 lines
551 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;
|
|
}
|
|
</style>
|
|
</head>
|
|
|
|
<body>
|
|
<script src="https://unpkg.com/three@0.146.0/build/three.min.js"></script>
|
|
<script type="module" src="./js/main.js"></script>
|
|
</body>
|
|
</html>
|