43 lines
1.1 KiB
HTML
43 lines
1.1 KiB
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, user-scalable=no, minimum-scale=1.0, maximum-scale=1.0"
|
|
/>
|
|
<title>Moteur de jeu • Projet</title>
|
|
<style>
|
|
@keyframes animTitle {
|
|
0% {
|
|
color: orange;
|
|
}
|
|
20% {
|
|
color: red;
|
|
}
|
|
60% {
|
|
color: yellow;
|
|
}
|
|
100% {
|
|
color: orange;
|
|
}
|
|
}
|
|
|
|
body {
|
|
margin: 0px;
|
|
background-color: black;
|
|
text-align: center;
|
|
font-family: sans-serif;
|
|
}
|
|
</style>
|
|
</head>
|
|
|
|
<body>
|
|
<div id="score"></div>
|
|
<script src="./js/lib/three.min.js"></script>
|
|
<script src="./js/lib/dat.gui.min.js"></script>
|
|
|
|
<script type="module" src="./js/main.js"></script>
|
|
</body>
|
|
</html>
|