-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
39 lines (39 loc) · 1.14 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Text Counter</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<div class="container">
<header>
<h1>Text Counter</h1>
</header>
<div class="counters">
<div class="counter">
<p>Character</p>
<span id="characterCount">0</span>
</div>
<div class="counter">
<p>Words</p>
<span id="wordCount">0</span>
</div>
<div class="counter">
<p>Lines</p>
<span id="lineCount">0</span>
</div>
<div class="counter">
<p>Sentences</p>
<span id="sentenceCount">0</span>
</div>
</div>
<textarea id="textInput" placeholder="Enter Your Text" oninput="updateCounts()"></textarea>
<footer>
<p>© 2024 Tegar Sabila. All rights reserved.</p>
</footer>
</div>
<script src="script.js"></script>
</body>
</html>