31 lines
868 B
HTML
31 lines
868 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="end">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>
|