pages/character/index.html
2025-06-12 10:54:26 +02:00

20 lines
553 B
HTML

<!DOCTYPE html>
<html>
<head>
<title>Character Counter</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style.css">
<link rel="shortcut icon" href="https://rimgo.pussthecat.org/RFbdMMB.png" type="image/x-icon">
</head>
<body>
<h1>Character Counter</h1>
<div class="cards shadow">
<textarea id="input" placeholder="Enter Text" rows="10" cols="60"></textarea>
<div id="count">0</div>
</div>
<script src="index.js"></script>
</body>
</html>