This repository has been archived on 2022-12-05. You can view files and clone it, but cannot push or open issues or pull requests.
GeometryDash3D/index.html

47 lines
1.2 KiB
HTML
Raw Normal View History

2022-11-07 09:10:20 +01:00
<!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"
/>
2022-12-02 23:20:01 +01:00
<link rel="icon" href="./assets/images/player.jpg" />
2022-11-07 09:10:20 +01:00
<title>Moteur de jeu • Projet</title>
<style>
2022-12-02 22:46:22 +01:00
@keyframes animTitle {
0% {
color: orange;
}
20% {
color: red;
}
60% {
color: yellow;
}
100% {
color: orange;
}
}
2022-11-07 09:10:20 +01:00
body {
margin: 0px;
2022-12-02 16:32:52 +01:00
background-color: black;
text-align: center;
font-family: sans-serif;
2022-11-07 09:10:20 +01:00
}
</style>
</head>
<body>
<div id="score"></div>
2022-11-22 10:40:36 +01:00
<script src="./js/lib/three.min.js"></script>
2022-11-24 18:57:04 +01:00
<script src="./js/lib/dat.gui.min.js"></script>
2022-11-07 09:10:20 +01:00
<script type="module" src="./js/main.js"></script>
</body>
</html>