Add Woordenteller application with HTML, CSS, and JavaScript implementation

This commit is contained in:
vista-man
2025-01-27 20:29:15 +01:00
parent 05e773e405
commit 078130fc43
3 changed files with 92 additions and 0 deletions

View File

@@ -0,0 +1,41 @@
body {
font-family: Arial, sans-serif;
margin: 20px;
}
h1 {
color: #333;
}
textarea {
width: 100%;
padding: 10px;
margin-bottom: 10px;
border: 1px solid #ccc;
border-radius: 4px;
}
button {
padding: 10px 20px;
background-color: #007BFF;
color: white;
border: none;
border-radius: 4px;
cursor: pointer;
}
button:hover {
background-color: #0056b3;
}
#result {
margin-top: 20px;
}
#result p {
background-color: #f8f9fa;
padding: 5px;
border: 1px solid #ddd;
border-radius: 4px;
margin: 5px 0;
}