NDI-2019/Jeux_404/main.html

54 lines
1.1 KiB
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 {
2019-12-06 01:43:54 +01:00
border-bottom: 2px solid #0d0d0d;
}
2019-12-05 22:15:59 +01:00
.center {
text-align: center;
}
2019-12-05 23:49:19 +01:00
button {
2019-12-06 01:43:54 +01:00
margin-top: +50px;
2019-12-05 23:49:19 +01:00
display: block;
margin-left: auto;
margin-right: auto;
}
2019-12-06 01:43:54 +01:00
img {
margin-top: +130px;
margin-left: +300px;
}
</style>
</head>
2019-12-06 01:43:54 +01:00
<body>
2019-12-05 22:15:59 +01:00
<h1 class="center">Fuyez l'homme en noir !</h1>
2019-12-06 01:43:54 +01:00
<script src="./scores.js">
startGame()
</script>
<script src="./script.js">
load()
</script>
<img src="./gifs/homme trop swag.gif" alt="homme en noir" height="150" width="150">
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>
2019-12-06 01:43:54 +01:00
<script>
startGame()
load()
</script>
</body>
</html>