An open API service indexing awesome lists of open source software.

https://github.com/ahmed-dotnetdev/online-editor

Real time online editor allowing developers to write their code into the respective input fields and provides html and css and js and save file as txt extension
https://github.com/ahmed-dotnetdev/online-editor

css editor html javascirpt online-editor scss

Last synced: 6 months ago
JSON representation

Real time online editor allowing developers to write their code into the respective input fields and provides html and css and js and save file as txt extension

Awesome Lists containing this project

README

          

## Programming-Editor

**[LIVE DEMO](https://ahmed-dotnetdev.github.io/Online-Editor/)**

## Idea of application 🤔
- This app manage user to write HTML and CSS and javascript in separated text area and reflect it on the side frame and can save this code too

## HTML demo 📑
```html

Hello


```
## CSS demo 📑
```css
h1{
color:red;
}
```
## Javascript demo 📑
```js
function changeColor(newColor) {
const elem = document.getElementById("para");
elem.style.color = newColor;
}
```

## Clone Repo  
```
git clone https://github.com/Ahmed-DotNetDev/Programming-Editor.git
```