From 4d872016cdd99c132f885db24449f65dc579a8f4 Mon Sep 17 00:00:00 2001
From: Aaditya Agarwal <146380217+psy-duck1@users.noreply.github.com>
Date: Sun, 12 Oct 2025 18:22:20 +0530
Subject: [PATCH] Add Word Counter Web App in Javascript
---
Javascript/Word Counter/README.md | 52 +++++++++++++++++
Javascript/Word Counter/index.html | 24 ++++++++
Javascript/Word Counter/script.js | 29 ++++++++++
Javascript/Word Counter/style.css | 89 ++++++++++++++++++++++++++++++
4 files changed, 194 insertions(+)
create mode 100644 Javascript/Word Counter/README.md
create mode 100644 Javascript/Word Counter/index.html
create mode 100644 Javascript/Word Counter/script.js
create mode 100644 Javascript/Word Counter/style.css
diff --git a/Javascript/Word Counter/README.md b/Javascript/Word Counter/README.md
new file mode 100644
index 0000000..d4fdb6d
--- /dev/null
+++ b/Javascript/Word Counter/README.md
@@ -0,0 +1,52 @@
+
+# 🧮 Word Counter Web App
+
+A simple and responsive web application that counts **words**, **characters**, and **sentences** in real-time as you type — featuring an elegant **Dark / Light Mode toggle**.
+
+***
+
+## ✨ Features
+
+- 📝 Real-time counting of:
+ - Words
+ - Characters
+ - Sentences
+- 🌗 Toggle between **Light Mode** and **Dark Mode**
+- 💻 Responsive, minimal user interface
+- ⚡ Lightweight — built using pure HTML, CSS, and JavaScript (no frameworks)
+
+***
+
+## 🧩 File Structure
+
+```
+Word Counter/
+│
+├── index.html # Main HTML file
+├── style.css # Styling (Light/Dark mode)
+├── script.js # JavaScript logic for counting and theme toggle
+└── README.md # Project documentation
+```
+
+
+***
+
+## 🚀 How to Use
+
+1. **Clone** or **download** this repository:
+2. Open the `index.html` file in any browser.
+3. Type or paste your text into the text box.
+4. Watch the live counts of words, characters, and sentences update instantly.
+5. Click the 🌙 Night Mode / ☀️ Light Mode button to toggle between themes.
+
+***
+
+## 🛠️ Tech Stack
+
+- **HTML5** – Structure
+- **CSS3** – Styling and themes
+- **JavaScript (Vanilla)** – Logic and interactivity.
+
+***
+
+Enjoy using the Text Counter Web App for all your writing and editing needs!
\ No newline at end of file
diff --git a/Javascript/Word Counter/index.html b/Javascript/Word Counter/index.html
new file mode 100644
index 0000000..fc7633e
--- /dev/null
+++ b/Javascript/Word Counter/index.html
@@ -0,0 +1,24 @@
+
+
+