2025-01-27 20:29:15 +01:00
|
|
|
<!DOCTYPE html>
|
|
|
|
|
<html lang="en">
|
|
|
|
|
<head>
|
|
|
|
|
<meta charset="UTF-8">
|
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
|
|
|
<title>Woordenteller</title>
|
2025-01-27 20:32:34 +01:00
|
|
|
<link rel="stylesheet" href="style.css"> <!-- Link to the CSS file -->
|
2025-01-27 20:29:15 +01:00
|
|
|
</head>
|
|
|
|
|
<body>
|
2025-01-27 20:32:34 +01:00
|
|
|
<h1>Woordenteller</h1> <!-- Header -->
|
|
|
|
|
<textarea id="textInput" rows="10" cols="50"></textarea><br> <!-- Textarea for input -->
|
|
|
|
|
<button id="countButton">Tel Woorden</button> <!-- Button to count words -->
|
|
|
|
|
<div id="result"></div> <!-- Div to display results -->
|
2025-01-27 20:29:15 +01:00
|
|
|
|
2025-01-27 20:32:34 +01:00
|
|
|
<script src="woordenteller.js"></script> <!-- Link to the JavaScript file -->
|
2025-01-27 20:29:15 +01:00
|
|
|
</body>
|
|
|
|
|
</html>
|