daedalus/index.html
2023-06-05 03:02:49 +02:00

31 lines
874 B
HTML

<!DOCTYPE html>
<html lang="fr">
<head>
<title>Daedalus</title>
<meta charset=utf-8 />
<meta name="viewport" content="width=device-width, user-scalable=no, minimum-scale=1.0, maximum-scale=1.0">
<link rel="shortcut icon" type="image/x-icon" href="favicon.php"/>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div id="container"></div>
<span id="message">Libre !</span>
<!-- Import maps polyfill -->
<!-- Remove this when import maps will be widely supported -->
<script async src="https://unpkg.com/es-module-shims@1.6.3/dist/es-module-shims.js"></script>
<script type="importmap">
{
"imports": {
"three": "https://unpkg.com/three@0.152.2/build/three.module.js",
"three/addons/": "https://unpkg.com/three@0.152.2/examples/jsm/"
}
}
</script>
<script type="module" src="main.js"></script>
</body>
</html>