29 lines
895 B
HTML
Executable File
29 lines
895 B
HTML
Executable File
<!DOCTYPE html>
|
|
<html lang="it">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>Semplice Island FPS</title>
|
|
<link rel="stylesheet" href="style.css">
|
|
</head>
|
|
<body>
|
|
<div id="start">
|
|
<img src="./img/titolo.png" alt="titolo" />
|
|
<div class="container">
|
|
<div class="left">ISTRUZIONI</div>
|
|
<div class="center">Clicca per giocare</div>
|
|
<div class="right"></div>
|
|
</div>
|
|
</div>
|
|
<div id="punti">Rifiuti: <span id="score">0</span></div>
|
|
<div id="tempo">Tempo: <span id="time">XX:XX</span></div>
|
|
<script type="importmap">
|
|
{
|
|
"imports": {
|
|
"three": "https://unpkg.com/three@0.160.0/build/three.module.js",
|
|
"three/addons/": "https://unpkg.com/three@0.160.0/examples/jsm/"
|
|
}
|
|
}
|
|
</script>
|
|
<script type="module" src="script.js"></script>
|
|
</body>
|
|
</html> |