mirror of
https://github.com/Alvin-Zilverstand/ict-algemeen-opdrachten.git
synced 2026-03-06 11:06:59 +01:00
18 lines
487 B
HTML
18 lines
487 B
HTML
<!DOCTYPE html>
|
|
<html lang="nl">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Raad het getal</title>
|
|
<script src="raadgetal.js" defer></script>
|
|
<link rel="stylesheet" href="style.css">
|
|
</head>
|
|
<body>
|
|
<h1>Raad het getal</h1>
|
|
<p>Voer een getal in tussen 1 en 100:</p>
|
|
<input type="number" id="guessInput">
|
|
<button onclick="checkGuess()">Gok</button>
|
|
<p id="result"></p>
|
|
</body>
|
|
</html>
|