Skip to content

Commit 077438b

Browse files
authored
Merge pull request #18 from tajulafreen/word-couter
50Projects-HTML-CSS-JavaScript : Word counter
2 parents 481eb54 + c7f2297 commit 077438b

File tree

4 files changed

+1061
-0
lines changed

4 files changed

+1061
-0
lines changed

README.md

+11
Original file line numberDiff line numberDiff line change
@@ -177,6 +177,17 @@ In order to run this project you need:
177177
</details>
178178
</li>
179179

180+
<li>
181+
<details>
182+
<summary>Word Counter</summary>
183+
<p>Word Counter App is a simple and efficient tool built using HTML, CSS, and JavaScript. This application provides users with an easy way to count words, characters, sentences, and paragraphs in a given text. Additionally, it offers features such as readability score and estimated reading time.</p>
184+
<ul>
185+
<li><a href="https://tajulafreen.github.io/50Projects-HTML-CSS-JavaScript/Source-Code/WordCounter/">Live Demo</a></li>
186+
<li><a href="https://github.com/tajulafreen/50Projects-HTML-CSS-JavaScript/tree/main/Source-Code/WordCounter">Source</a></li>
187+
</ul>
188+
</details>
189+
</li>
190+
180191
</ol>
181192

182193
<p align="right">(<a href="#readme-top">back to top</a>)</p>

Source-Code/WordCounter/index.html

+34
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="UTF-8">
5+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
6+
<title>Word Counter</title>
7+
<link rel="stylesheet" href="style.css">
8+
</head>
9+
<body>
10+
<div class="container">
11+
<h1>Word Counter</h1>
12+
<textarea placeholder="Enter your text here..."></textarea>
13+
<div class="output row">
14+
<div>Characters: <span id="characterCount">0</span></div>
15+
<div>Words: <span id="wordCount">0</span></div>
16+
</div>
17+
<div class="output row">
18+
<div>Sentences: <span id="sentenceCount">0</span></div>
19+
<div>Paragraphs: <span id="paragraphCount">0</span></div>
20+
</div>
21+
<div class="output row">
22+
<div>Reading Time: <span id="readingTime">0</span></div>
23+
<div id="readability">Show readability score.</div>
24+
</div>
25+
<div class="keywords">
26+
Top keywords:
27+
<ul id="topKeywords">
28+
</ul>
29+
</div>
30+
</div>
31+
32+
<script src="script.js"></script>
33+
</body>
34+
</html>

0 commit comments

Comments
 (0)