JS/TP03/EX01/cookie.html

27 lines
680 B
HTML

<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no">
<title>Cookie clicker</title>
<link rel="stylesheet" href="./css/style.css">
</head>
<body>
<div class="container">
<h1>Cookie clicker</h1>
<figure>
<img id="cookie"src="img/cookie.png" alt="cookie">
<span id="score">0</span>
</figure>
<button id="btnStart">start</button>
<p id="meme" class="hidden">
<img src="img/memee.png" alt="memee" width="64" height="64">
<span id="temps"></span>
</p>
</div>
<script type="text/javascript" src="./js/game.js"></script>
</body>
</html>