diff --git a/Vanilla-JS-Projects/Intermediate/Code-Editor/README.md b/Vanilla-JS-Projects/Intermediate/Code-Editor/README.md new file mode 100644 index 00000000..50b1e0e8 --- /dev/null +++ b/Vanilla-JS-Projects/Intermediate/Code-Editor/README.md @@ -0,0 +1,76 @@ +

đŸ’Ĩ CODE-EDITOR đŸ’Ĩ

+ + + +

Tech Stack Used 🎮

+ + +
+ + ![HTML5](https://img.shields.io/badge/html5-%23E34F26.svg?style=for-the-badge&logo=html5&logoColor=white) + ![CSS3](https://img.shields.io/badge/css3-%231572B6.svg?style=for-the-badge&logo=css3&logoColor=white) + + ![JavaScript](https://img.shields.io/badge/javascript-%23323330.svg?style=for-the-badge&logo=javascript&logoColor=%23F7DF1E) + + + + + + + + + + + +
+ + +![Line](https://github.com/Avdhesh-Varshney/WebMasterLog/assets/114330097/4b78510f-a941-45f8-a9d5-80ed0705e847) + + + +## :zap: Description 📃 + +
+ +

This project utilizes a technology stack comprising HTML, CSS, and JavaScript. The integrated code editor features dedicated HTML, CSS, and JavaScript editors, providing real-time output previews for an enhanced development experience.

+
+ + + + +## :zap: How to run it? 🕹ī¸ + + + +- Clone this repository. +- Navigate to this project directory +- Run the `index.html` file. + + + +## :zap: Screenshots 📸 + +![img](./screenshot.webp) + + + + +![Line](https://github.com/Avdhesh-Varshney/WebMasterLog/assets/114330097/4b78510f-a941-45f8-a9d5-80ed0705e847) + + + +

Developed By MANKALA VAISHNAVI đŸ‘Ļ

+

+ + + + + + +

+ +

Happy Coding 🧑‍đŸ’ģ

+ +

Show some  â¤ī¸  by  đŸŒŸ  this repository!

+ diff --git a/Vanilla-JS-Projects/Intermediate/Code-Editor/index.html b/Vanilla-JS-Projects/Intermediate/Code-Editor/index.html new file mode 100644 index 00000000..08af8493 --- /dev/null +++ b/Vanilla-JS-Projects/Intermediate/Code-Editor/index.html @@ -0,0 +1,47 @@ + + + + + + + Document + + +

My Editor

+
+
+ + + + + + + + + + + + +
+
+ + + + +
+ +
+ + + + + \ No newline at end of file diff --git a/Vanilla-JS-Projects/Intermediate/Code-Editor/screenshot.webp b/Vanilla-JS-Projects/Intermediate/Code-Editor/screenshot.webp new file mode 100644 index 00000000..d5f3374b Binary files /dev/null and b/Vanilla-JS-Projects/Intermediate/Code-Editor/screenshot.webp differ diff --git a/Vanilla-JS-Projects/Intermediate/Code-Editor/style.css b/Vanilla-JS-Projects/Intermediate/Code-Editor/style.css new file mode 100644 index 00000000..15392f0b --- /dev/null +++ b/Vanilla-JS-Projects/Intermediate/Code-Editor/style.css @@ -0,0 +1,52 @@ +*{ + margin:0; + padding:0; + box-sizing: border-box; + font-family: 'Lato,Lucida, sans-serif; Helvetica Narrow, sans-serif; sans-serif'; +} +h1{ + color:rgb(83, 83, 236); + text-align: center; + margin-top:5px; +} +body{ + background-color:#454545; + color:white; +} +.container{ + height:100vh; + width:100%; + padding:20px; + display:flex; +} +.left, .right{ + flex-basis: 50%; + padding:10px; +} +textarea{ + width:100%; + height:28%; + background:#1f1f1f; + color:#fff; + padding:10px 20px; + font-size:18px; + border:0; + outline:0; +} +iframe{ + width:100%; + height:95%; + border:0; + outline:0; + background-color: white; +} +label i{ + margin-right:10px; + margin-left:10px; +} +label{ + display:flex; + align-items:center; + background:#000; + height:30px; +} \ No newline at end of file diff --git a/Vanilla-JS-Projects/README.md b/Vanilla-JS-Projects/README.md index 4a6f1fbb..83830d52 100644 --- a/Vanilla-JS-Projects/README.md +++ b/Vanilla-JS-Projects/README.md @@ -67,6 +67,7 @@ | 40 | [Anagram-Checker](./Basic/Anagram-Checker/) | ![Basic](https://img.shields.io/badge/Basic-00FF00?style=for-the-badge) | | 41 | [Leap-Year-Checker](./Basic/Leap-Year-Checker/) | ![Basic](https://img.shields.io/badge/Basic-00FF00?style=for-the-badge) | | 42 | [Image-Search-Engine](./Basic/Image-Search-Engine/) | ![Basic](https://img.shields.io/badge/Basic-00FF00?style=for-the-badge) | +| 43 | [Code-Editor](./Intermediate/Code-Editor/) | ![Intermediate](https://img.shields.io/badge/Intermediate-FFD700?style=for-the-badge) | diff --git a/database/vanilla.json b/database/vanilla.json index d8179975..a2af9d7b 100644 --- a/database/vanilla.json +++ b/database/vanilla.json @@ -118,5 +118,10 @@ "tag":"Intermediate", "title":"Meme-Generator", "description":"This is a simple project which generates random memes along with an image and the name of the author just by one click of a button." + }, + { + "tag":"Intermediate", + "title":"Code-Editor", + "description":"This project utilizes a technology stack comprising HTML, CSS, and JavaScript. The integrated code editor features dedicated HTML, CSS, and JavaScript editors, providing real-time output previews for an enhanced development experience." } ]