-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
28 lines (28 loc) · 1.09 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<link href="css/index.css" rel="stylesheet">
<link rel="icon" type="image/png" href="img/favicon.png" />
<title>BOULDER DASH : Page d'accueil</title>
</head>
<body>
<preloader></preloader>
<header>
<img src="./img/BD-logo.png" alt="logo"/>
</header>
<div id="buttons">
<button id="newGameB">Nouvelle partie</button>
<button id="loadSavedGameB">Reprendre la partie</button>
<button id="levelsManagementB">Gestion des niveaux</button>
</div>
<footer>
<p>C'est pas Minecraft mais c'est bien quand même.<br>
<a href="https://github.com/a-coutarel/BoulderDash" target="_blank">Projet</a> réalisé par <a href="https://github.com/a-coutarel" target="_blank">Allan Coutarel</a> et <a href="https://github.com/Guimhoff" target="_blank">Guillaume Imhoff</a>
</p>
<button id="volume"></button>
</footer>
<script type="module" src="js/application/index.js"></script>
<script src="https://code.jquery.com/jquery-3.5.0.js"></script>
</body>
</html>