mirror of
https://github.com/Alvin-Zilverstand/ict-algemeen-opdrachten.git
synced 2026-03-06 13:23:58 +01:00
Add Woordenteller application with HTML, CSS, and JavaScript implementation
This commit is contained in:
17
JavaScript/woordenteller/index.html
Normal file
17
JavaScript/woordenteller/index.html
Normal file
@@ -0,0 +1,17 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>Woordenteller</title>
|
||||
<link rel="stylesheet" href="style.css">
|
||||
</head>
|
||||
<body>
|
||||
<h1>Woordenteller</h1>
|
||||
<textarea id="textInput" rows="10" cols="50"></textarea><br>
|
||||
<button id="countButton">Tel Woorden</button>
|
||||
<div id="result"></div>
|
||||
|
||||
<script src="woordenteller.js"></script>
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user