├── .gitignore ├── README.md └── Vanilla JS ├── Color Changing App ├── app.js ├── index.html └── style.css └── Day Of The Week App ├── app.js ├── index.html └── style.css /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prtrt/Javascript-MiniProjects/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prtrt/Javascript-MiniProjects/HEAD/README.md -------------------------------------------------------------------------------- /Vanilla JS/Color Changing App/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prtrt/Javascript-MiniProjects/HEAD/Vanilla JS/Color Changing App/app.js -------------------------------------------------------------------------------- /Vanilla JS/Color Changing App/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prtrt/Javascript-MiniProjects/HEAD/Vanilla JS/Color Changing App/index.html -------------------------------------------------------------------------------- /Vanilla JS/Color Changing App/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prtrt/Javascript-MiniProjects/HEAD/Vanilla JS/Color Changing App/style.css -------------------------------------------------------------------------------- /Vanilla JS/Day Of The Week App/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prtrt/Javascript-MiniProjects/HEAD/Vanilla JS/Day Of The Week App/app.js -------------------------------------------------------------------------------- /Vanilla JS/Day Of The Week App/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prtrt/Javascript-MiniProjects/HEAD/Vanilla JS/Day Of The Week App/index.html -------------------------------------------------------------------------------- /Vanilla JS/Day Of The Week App/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prtrt/Javascript-MiniProjects/HEAD/Vanilla JS/Day Of The Week App/style.css --------------------------------------------------------------------------------