WIM/WIM4.1/tp/tp2/ex3/cookie.html
2022-04-12 12:34:07 +02:00

27 lines
623 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 src="img/cookie.png" alt="cookie">
<span>0</span>
</figure>
<button>start</button>
<p class="hidden">
<img src="img/memee.png" alt="memee" width="64" height="64">
<span></span>
</p>
</div>
<script type="text/javascript" src="./js/game.js"></script>
</body>
</html>