NDI-2019/Jeux_404/main.html

38 lines
919 B
HTML
Raw Normal View History

<!DOCTYPE html>
2019-12-05 23:49:19 +01:00
<!--https:/www.w3schools.com/graphics/game_intro.asp-->
<!--https:/www.trex-game.skipser.com-->
<html>
<head>
2019-12-05 23:49:19 +01:00
<meta charset="UTF8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<style>
canvas {
border: 1px solid #d3d3d3;
background-color: #f1f1f1;
}
2019-12-05 22:15:59 +01:00
.center {
text-align: center;
}
2019-12-05 23:49:19 +01:00
button {
margin-top: +300px;
display: block;
margin-left: auto;
margin-right: auto;
}
</style>
</head>
2019-12-05 23:49:19 +01:00
<body onload="startGame()" onload="load()">
2019-12-05 22:15:59 +01:00
<h1 class="center">Fuyez l'homme en noir !</h1>
2019-12-05 23:49:19 +01:00
<script src="./scores.js"></script>
2019-12-05 21:51:21 +01:00
<script src="./script.js"></script>
2019-12-05 22:15:59 +01:00
<br>
2019-12-05 23:49:19 +01:00
<button onmousedown="sauter(-0.5)" onmouseup="sauter(0.05)">SAUTER</button>
</body>
</html>