diff --git a/README.md b/README.md
index 55c6964..cf68bf5 100644
--- a/README.md
+++ b/README.md
@@ -36,6 +36,7 @@
- Stopwatch
- Temperature Converter
- Text-to-Speech
+- Text-Editor
- Tic Tac Toe
- Time Zone Converter
- To-Do
diff --git a/Text-Editor/Images/demo.png b/Text-Editor/Images/demo.png
new file mode 100644
index 0000000..92d737b
Binary files /dev/null and b/Text-Editor/Images/demo.png differ
diff --git a/Text-Editor/README.md b/Text-Editor/README.md
new file mode 100644
index 0000000..36444ac
--- /dev/null
+++ b/Text-Editor/README.md
@@ -0,0 +1,49 @@
+
+# Text-Editor
+
+A simple text editor created using HTML, CSS, and JavaScript. This editor allows you to perform various text formatting and styling operations.
+
+## Features
+
+### Formatting Options
+- **Bold Text**: Click the **B** button to make the selected text bold.
+- **Superscript Text**:You can also write in Superscript format.
+- **Subscript Text**: You can also write in Subscript format.
+
+### Lists
+- **Ordered List**: Create numbered lists by clicking the numbered list button.
+- **Unordered List**: Create bulleted lists with the bullet list button.
+
+### Undo and Redo
+- **Undo**: Reverse your last action using the undo button.
+- **Redo**: Restore your undone action with the redo button.
+
+### Hyperlinks
+- **Create Link**: Highlight text and click the link button to insert or edit a hyperlink.
+- **Remove Link**: Remove an existing hyperlink by selecting text and clicking the unlink button.
+
+### Alignment
+- **Left Align**: Align text to the left with the align-left button.
+- **Center Align**: Center-align text using the align-center button.
+- **Right Align**: Right-align text with the align-right button.
+- **Justify**: Fully justify text with the align-justify button.
+
+### Spacing
+- **Indent**: Increase the indentation of text using the indent button.
+- **Outdent**: Decrease the indentation of text with the outdent button.
+
+### Advanced Formatting
+- **Heading Size**: Choose the heading size from the dropdown menu.
+- **Font Family**: Select the font family from the dropdown menu.
+- **Font Size**: Choose the font size from the dropdown menu.
+- **Font Color**: Pick a font color using the color input.
+- **Highlight Color**: Choose a highlight color using the color input.
+## Implementation Examples
+
+![Demo](./Images/demo.png)
+
+
+
+
+
+
diff --git a/Text-Editor/index.html b/Text-Editor/index.html
new file mode 100644
index 0000000..0a55f5a
--- /dev/null
+++ b/Text-Editor/index.html
@@ -0,0 +1,95 @@
+
+
+
+