NDI-2019/Jeux_404/main.html

26 lines
582 B
HTML
Raw Normal View History

<!DOCTYPE html>
<html>
<head>
<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;
}
</style>
</head>
<body onload="startGame()">
2019-12-05 22:15:59 +01:00
<h1 class="center">Fuyez l'homme en noir !</h1>
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 22:15:59 +01:00
<button onmousedown="sauter(-0.5)" onmouseup="sauter(0.05)" class="center">SAUTER</button>
</body>
</html>