├── .gitattributes ├── README.md ├── ReviewApp ├── app.js ├── data.js ├── index.html ├── person-1.jpeg └── styles.css ├── SideBar ├── app.js ├── index.html ├── logo.svg └── styles.css ├── colorFlipper ├── app.js ├── hex.html ├── hex.js ├── index.html └── style.css ├── counterApp ├── app.js ├── index.html └── styles.css ├── modal ├── app.js ├── hero.jpeg ├── index.html ├── logo.svg └── styles.css ├── navbar ├── app.js ├── index.html ├── logo.svg └── styles.css ├── navigation copy 5 ├── app.js ├── index.html └── styles.css ├── navigation copy 6 ├── app.js ├── index.html └── styles.css ├── navigation copy 7 ├── app.js ├── index.html └── styles.css ├── navigation ├── app.js ├── index.html └── styles.css └── questions ├── app.js ├── index.html ├── logo.svg └── styles.css /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1FarZ1/Simple-Web-Apps-Js/HEAD/.gitattributes -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1FarZ1/Simple-Web-Apps-Js/HEAD/README.md -------------------------------------------------------------------------------- /ReviewApp/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1FarZ1/Simple-Web-Apps-Js/HEAD/ReviewApp/app.js -------------------------------------------------------------------------------- /ReviewApp/data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1FarZ1/Simple-Web-Apps-Js/HEAD/ReviewApp/data.js -------------------------------------------------------------------------------- /ReviewApp/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1FarZ1/Simple-Web-Apps-Js/HEAD/ReviewApp/index.html -------------------------------------------------------------------------------- /ReviewApp/person-1.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1FarZ1/Simple-Web-Apps-Js/HEAD/ReviewApp/person-1.jpeg -------------------------------------------------------------------------------- /ReviewApp/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1FarZ1/Simple-Web-Apps-Js/HEAD/ReviewApp/styles.css -------------------------------------------------------------------------------- /SideBar/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1FarZ1/Simple-Web-Apps-Js/HEAD/SideBar/app.js -------------------------------------------------------------------------------- /SideBar/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1FarZ1/Simple-Web-Apps-Js/HEAD/SideBar/index.html -------------------------------------------------------------------------------- /SideBar/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1FarZ1/Simple-Web-Apps-Js/HEAD/SideBar/logo.svg -------------------------------------------------------------------------------- /SideBar/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1FarZ1/Simple-Web-Apps-Js/HEAD/SideBar/styles.css -------------------------------------------------------------------------------- /colorFlipper/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1FarZ1/Simple-Web-Apps-Js/HEAD/colorFlipper/app.js -------------------------------------------------------------------------------- /colorFlipper/hex.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1FarZ1/Simple-Web-Apps-Js/HEAD/colorFlipper/hex.html -------------------------------------------------------------------------------- /colorFlipper/hex.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1FarZ1/Simple-Web-Apps-Js/HEAD/colorFlipper/hex.js -------------------------------------------------------------------------------- /colorFlipper/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1FarZ1/Simple-Web-Apps-Js/HEAD/colorFlipper/index.html -------------------------------------------------------------------------------- /colorFlipper/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1FarZ1/Simple-Web-Apps-Js/HEAD/colorFlipper/style.css -------------------------------------------------------------------------------- /counterApp/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1FarZ1/Simple-Web-Apps-Js/HEAD/counterApp/app.js -------------------------------------------------------------------------------- /counterApp/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1FarZ1/Simple-Web-Apps-Js/HEAD/counterApp/index.html -------------------------------------------------------------------------------- /counterApp/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1FarZ1/Simple-Web-Apps-Js/HEAD/counterApp/styles.css -------------------------------------------------------------------------------- /modal/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1FarZ1/Simple-Web-Apps-Js/HEAD/modal/app.js -------------------------------------------------------------------------------- /modal/hero.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1FarZ1/Simple-Web-Apps-Js/HEAD/modal/hero.jpeg -------------------------------------------------------------------------------- /modal/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1FarZ1/Simple-Web-Apps-Js/HEAD/modal/index.html -------------------------------------------------------------------------------- /modal/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1FarZ1/Simple-Web-Apps-Js/HEAD/modal/logo.svg -------------------------------------------------------------------------------- /modal/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1FarZ1/Simple-Web-Apps-Js/HEAD/modal/styles.css -------------------------------------------------------------------------------- /navbar/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1FarZ1/Simple-Web-Apps-Js/HEAD/navbar/app.js -------------------------------------------------------------------------------- /navbar/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1FarZ1/Simple-Web-Apps-Js/HEAD/navbar/index.html -------------------------------------------------------------------------------- /navbar/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1FarZ1/Simple-Web-Apps-Js/HEAD/navbar/logo.svg -------------------------------------------------------------------------------- /navbar/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1FarZ1/Simple-Web-Apps-Js/HEAD/navbar/styles.css -------------------------------------------------------------------------------- /navigation copy 5/app.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /navigation copy 5/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1FarZ1/Simple-Web-Apps-Js/HEAD/navigation copy 5/index.html -------------------------------------------------------------------------------- /navigation copy 5/styles.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /navigation copy 6/app.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /navigation copy 6/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1FarZ1/Simple-Web-Apps-Js/HEAD/navigation copy 6/index.html -------------------------------------------------------------------------------- /navigation copy 6/styles.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /navigation copy 7/app.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /navigation copy 7/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1FarZ1/Simple-Web-Apps-Js/HEAD/navigation copy 7/index.html -------------------------------------------------------------------------------- /navigation copy 7/styles.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /navigation/app.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /navigation/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1FarZ1/Simple-Web-Apps-Js/HEAD/navigation/index.html -------------------------------------------------------------------------------- /navigation/styles.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /questions/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1FarZ1/Simple-Web-Apps-Js/HEAD/questions/app.js -------------------------------------------------------------------------------- /questions/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1FarZ1/Simple-Web-Apps-Js/HEAD/questions/index.html -------------------------------------------------------------------------------- /questions/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1FarZ1/Simple-Web-Apps-Js/HEAD/questions/logo.svg -------------------------------------------------------------------------------- /questions/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1FarZ1/Simple-Web-Apps-Js/HEAD/questions/styles.css --------------------------------------------------------------------------------