26 lines
582 B
HTML
26 lines
582 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
|
|
<head>
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<style>
|
|
canvas {
|
|
border: 1px solid #d3d3d3;
|
|
background-color: #f1f1f1;
|
|
}
|
|
|
|
.center {
|
|
text-align: center;
|
|
}
|
|
</style>
|
|
</head>
|
|
|
|
<body onload="startGame()">
|
|
<h1 class="center">Fuyez l'homme en noir !</h1>
|
|
<script src="./script.js"></script>
|
|
|
|
<br>
|
|
<button onmousedown="sauter(-0.5)" onmouseup="sauter(0.05)" class="center">SAUTER</button>
|
|
</body>
|
|
|
|
</html> |