├── .vscode └── settings.json ├── Project-01 ├── index.html ├── index.js └── style.css ├── Project-02 ├── index.html ├── index.js └── style.css ├── Project-03 ├── index.html ├── index.js └── style.css ├── Project-04 ├── imgs │ ├── 1.png │ ├── 2.png │ ├── 3.png │ ├── 4.png │ ├── 5.png │ └── 6.png ├── index.html ├── index.js └── style.css ├── Project-05 ├── index.html ├── index.js └── style.css ├── Project-06 ├── emoji.png ├── index.html ├── index.js └── style.css ├── Project-07 ├── index.html ├── index.js └── style.css ├── Project-08 ├── images │ ├── checked.png │ ├── icon.png │ └── unchecked.png ├── index.html ├── index.js └── style.css ├── Project-09 ├── images │ ├── background.png │ ├── reset.png │ ├── start.png │ └── stop.png ├── index.html ├── index.js └── style.css ├── Project-10 ├── index.html ├── index.js └── style.css ├── Project-11 ├── images │ ├── crash.png │ ├── kick.png │ ├── snare.png │ └── tom.png ├── index.html ├── index.js ├── sounds │ ├── crash.mp3 │ ├── kick.mp3 │ ├── snare.mp3 │ └── tom.mp3 └── style.css ├── Project-12 ├── index.html ├── index.js └── style.css ├── Project-13 ├── index.html ├── index.js └── style.css ├── Project-14 ├── images │ ├── clear.png │ ├── cloud.png │ ├── location_not_found.png │ ├── mist.png │ ├── rain.png │ └── snow.png ├── index.html ├── index.js └── style.css ├── Project-15 ├── index.html ├── index.js └── style.css ├── Project-16 ├── index.html ├── index.js └── style.css ├── Project-17 ├── index.html ├── index.js ├── location-image.png └── style.css ├── Project-18 ├── index.html ├── index.js └── style.css ├── Project-19 ├── index.html ├── index.js └── style.css ├── Project-20 ├── images │ ├── paper.jpg │ ├── rock.jpg │ └── scissor.jpg ├── index.html ├── index.js └── style.css ├── Project-21 ├── check.svg ├── index.html ├── index.js └── style.css ├── Project-22 ├── index.html ├── index.js └── style.css ├── Project-23 ├── index.html ├── index.js └── style.css ├── Project-24 ├── index.html ├── index.js └── style.css ├── Project-25 ├── images │ ├── average.webp │ ├── excellent.webp │ ├── good.webp │ ├── poor.webp │ └── very_poor.webp ├── index.html ├── index.js └── style.css ├── Project-26 ├── index.html ├── index.js └── style.css ├── Project-27 ├── index.html ├── index.js └── style.css ├── Project-28 ├── index.html ├── index.js └── style.css ├── Project-29 ├── index.html ├── index.js └── style.css ├── Project-30 ├── index.html ├── index.js └── style.css ├── Project-31 ├── index.html ├── index.js └── style.css ├── Project-32 ├── index.html ├── index.js └── style.css ├── Project-33 ├── index.html ├── index.js └── style.css ├── Project-34 ├── index.html ├── index.js ├── panda.jpg └── style.css ├── Project-35 ├── images │ ├── children1.jpg │ ├── children2.jpg │ ├── men1.jpg │ ├── men2.jpg │ ├── women1.jpg │ └── women2.jpg ├── index.html ├── index.js └── style.css ├── Project-36 ├── index.html ├── index.js └── style.css ├── Project-37 ├── index.html ├── index.js └── style.css ├── Project-38 ├── eagle.png ├── index.html ├── index.js ├── sky.jpg └── style.css ├── Project-39 ├── delete.png ├── index.html ├── index.js ├── notes.png └── style.css ├── Project-40 ├── index.html ├── index.js └── style.css ├── Project-41 ├── index.html ├── index.js └── style.css ├── Project-42 ├── images │ ├── bhuvi_srh.jpg │ ├── dhoni_csk.jpg │ ├── duplessis_rcb.jpg │ ├── jadeja_csk.jpg │ ├── markram_srh.jpg │ ├── rohith_mi.webp │ ├── surya_mi.jpg │ └── virat_rcb.webp ├── index.html ├── index.js └── style.css ├── Project-43 ├── index.html ├── index.js └── style.css ├── Project-44 ├── iamge.jpg ├── index.html ├── index.js └── style.css ├── Project-45 ├── images │ ├── 1.jpg │ ├── 2.jpg │ ├── 3.jpg │ ├── 4.jpg │ ├── 5.jpg │ ├── 6.jpg │ └── 7.jpg ├── index.html ├── index.js └── style.css ├── Project-46 ├── index.html ├── index.js └── style.css ├── Project-47 ├── index.html ├── index.js └── style.css ├── Project-48 ├── index.html ├── index.js └── style.css ├── Project-49 ├── index.html ├── index.js └── style.css ├── Project-50 ├── O-Player.png ├── X-Player.png ├── index.html ├── index.js └── style.css ├── Project ├── 1.jpg ├── index.html ├── index.js └── style.css └── README.md /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pinaka-Pani-18/Javascript-Projects/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /Project-01/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pinaka-Pani-18/Javascript-Projects/HEAD/Project-01/index.html -------------------------------------------------------------------------------- /Project-01/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pinaka-Pani-18/Javascript-Projects/HEAD/Project-01/index.js -------------------------------------------------------------------------------- /Project-01/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pinaka-Pani-18/Javascript-Projects/HEAD/Project-01/style.css -------------------------------------------------------------------------------- /Project-02/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pinaka-Pani-18/Javascript-Projects/HEAD/Project-02/index.html -------------------------------------------------------------------------------- /Project-02/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pinaka-Pani-18/Javascript-Projects/HEAD/Project-02/index.js -------------------------------------------------------------------------------- /Project-02/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pinaka-Pani-18/Javascript-Projects/HEAD/Project-02/style.css -------------------------------------------------------------------------------- /Project-03/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pinaka-Pani-18/Javascript-Projects/HEAD/Project-03/index.html -------------------------------------------------------------------------------- /Project-03/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pinaka-Pani-18/Javascript-Projects/HEAD/Project-03/index.js -------------------------------------------------------------------------------- /Project-03/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pinaka-Pani-18/Javascript-Projects/HEAD/Project-03/style.css -------------------------------------------------------------------------------- /Project-04/imgs/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pinaka-Pani-18/Javascript-Projects/HEAD/Project-04/imgs/1.png -------------------------------------------------------------------------------- /Project-04/imgs/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pinaka-Pani-18/Javascript-Projects/HEAD/Project-04/imgs/2.png -------------------------------------------------------------------------------- /Project-04/imgs/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pinaka-Pani-18/Javascript-Projects/HEAD/Project-04/imgs/3.png -------------------------------------------------------------------------------- /Project-04/imgs/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pinaka-Pani-18/Javascript-Projects/HEAD/Project-04/imgs/4.png -------------------------------------------------------------------------------- /Project-04/imgs/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pinaka-Pani-18/Javascript-Projects/HEAD/Project-04/imgs/5.png -------------------------------------------------------------------------------- /Project-04/imgs/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pinaka-Pani-18/Javascript-Projects/HEAD/Project-04/imgs/6.png -------------------------------------------------------------------------------- /Project-04/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pinaka-Pani-18/Javascript-Projects/HEAD/Project-04/index.html -------------------------------------------------------------------------------- /Project-04/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pinaka-Pani-18/Javascript-Projects/HEAD/Project-04/index.js -------------------------------------------------------------------------------- /Project-04/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pinaka-Pani-18/Javascript-Projects/HEAD/Project-04/style.css -------------------------------------------------------------------------------- /Project-05/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pinaka-Pani-18/Javascript-Projects/HEAD/Project-05/index.html -------------------------------------------------------------------------------- /Project-05/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pinaka-Pani-18/Javascript-Projects/HEAD/Project-05/index.js -------------------------------------------------------------------------------- /Project-05/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pinaka-Pani-18/Javascript-Projects/HEAD/Project-05/style.css -------------------------------------------------------------------------------- /Project-06/emoji.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pinaka-Pani-18/Javascript-Projects/HEAD/Project-06/emoji.png -------------------------------------------------------------------------------- /Project-06/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pinaka-Pani-18/Javascript-Projects/HEAD/Project-06/index.html -------------------------------------------------------------------------------- /Project-06/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pinaka-Pani-18/Javascript-Projects/HEAD/Project-06/index.js -------------------------------------------------------------------------------- /Project-06/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pinaka-Pani-18/Javascript-Projects/HEAD/Project-06/style.css -------------------------------------------------------------------------------- /Project-07/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pinaka-Pani-18/Javascript-Projects/HEAD/Project-07/index.html -------------------------------------------------------------------------------- /Project-07/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pinaka-Pani-18/Javascript-Projects/HEAD/Project-07/index.js -------------------------------------------------------------------------------- /Project-07/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pinaka-Pani-18/Javascript-Projects/HEAD/Project-07/style.css -------------------------------------------------------------------------------- /Project-08/images/checked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pinaka-Pani-18/Javascript-Projects/HEAD/Project-08/images/checked.png -------------------------------------------------------------------------------- /Project-08/images/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pinaka-Pani-18/Javascript-Projects/HEAD/Project-08/images/icon.png -------------------------------------------------------------------------------- /Project-08/images/unchecked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pinaka-Pani-18/Javascript-Projects/HEAD/Project-08/images/unchecked.png -------------------------------------------------------------------------------- /Project-08/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pinaka-Pani-18/Javascript-Projects/HEAD/Project-08/index.html -------------------------------------------------------------------------------- /Project-08/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pinaka-Pani-18/Javascript-Projects/HEAD/Project-08/index.js -------------------------------------------------------------------------------- /Project-08/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pinaka-Pani-18/Javascript-Projects/HEAD/Project-08/style.css -------------------------------------------------------------------------------- /Project-09/images/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pinaka-Pani-18/Javascript-Projects/HEAD/Project-09/images/background.png -------------------------------------------------------------------------------- /Project-09/images/reset.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pinaka-Pani-18/Javascript-Projects/HEAD/Project-09/images/reset.png -------------------------------------------------------------------------------- /Project-09/images/start.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pinaka-Pani-18/Javascript-Projects/HEAD/Project-09/images/start.png -------------------------------------------------------------------------------- /Project-09/images/stop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pinaka-Pani-18/Javascript-Projects/HEAD/Project-09/images/stop.png -------------------------------------------------------------------------------- /Project-09/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pinaka-Pani-18/Javascript-Projects/HEAD/Project-09/index.html -------------------------------------------------------------------------------- /Project-09/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pinaka-Pani-18/Javascript-Projects/HEAD/Project-09/index.js -------------------------------------------------------------------------------- /Project-09/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pinaka-Pani-18/Javascript-Projects/HEAD/Project-09/style.css -------------------------------------------------------------------------------- /Project-10/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pinaka-Pani-18/Javascript-Projects/HEAD/Project-10/index.html -------------------------------------------------------------------------------- /Project-10/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pinaka-Pani-18/Javascript-Projects/HEAD/Project-10/index.js -------------------------------------------------------------------------------- /Project-10/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pinaka-Pani-18/Javascript-Projects/HEAD/Project-10/style.css -------------------------------------------------------------------------------- /Project-11/images/crash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pinaka-Pani-18/Javascript-Projects/HEAD/Project-11/images/crash.png -------------------------------------------------------------------------------- /Project-11/images/kick.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pinaka-Pani-18/Javascript-Projects/HEAD/Project-11/images/kick.png -------------------------------------------------------------------------------- /Project-11/images/snare.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pinaka-Pani-18/Javascript-Projects/HEAD/Project-11/images/snare.png -------------------------------------------------------------------------------- /Project-11/images/tom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pinaka-Pani-18/Javascript-Projects/HEAD/Project-11/images/tom.png -------------------------------------------------------------------------------- /Project-11/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pinaka-Pani-18/Javascript-Projects/HEAD/Project-11/index.html -------------------------------------------------------------------------------- /Project-11/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pinaka-Pani-18/Javascript-Projects/HEAD/Project-11/index.js -------------------------------------------------------------------------------- /Project-11/sounds/crash.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pinaka-Pani-18/Javascript-Projects/HEAD/Project-11/sounds/crash.mp3 -------------------------------------------------------------------------------- /Project-11/sounds/kick.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pinaka-Pani-18/Javascript-Projects/HEAD/Project-11/sounds/kick.mp3 -------------------------------------------------------------------------------- /Project-11/sounds/snare.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pinaka-Pani-18/Javascript-Projects/HEAD/Project-11/sounds/snare.mp3 -------------------------------------------------------------------------------- /Project-11/sounds/tom.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pinaka-Pani-18/Javascript-Projects/HEAD/Project-11/sounds/tom.mp3 -------------------------------------------------------------------------------- /Project-11/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pinaka-Pani-18/Javascript-Projects/HEAD/Project-11/style.css -------------------------------------------------------------------------------- /Project-12/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pinaka-Pani-18/Javascript-Projects/HEAD/Project-12/index.html -------------------------------------------------------------------------------- /Project-12/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pinaka-Pani-18/Javascript-Projects/HEAD/Project-12/index.js -------------------------------------------------------------------------------- /Project-12/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pinaka-Pani-18/Javascript-Projects/HEAD/Project-12/style.css -------------------------------------------------------------------------------- /Project-13/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pinaka-Pani-18/Javascript-Projects/HEAD/Project-13/index.html -------------------------------------------------------------------------------- /Project-13/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pinaka-Pani-18/Javascript-Projects/HEAD/Project-13/index.js -------------------------------------------------------------------------------- /Project-13/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pinaka-Pani-18/Javascript-Projects/HEAD/Project-13/style.css -------------------------------------------------------------------------------- /Project-14/images/clear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pinaka-Pani-18/Javascript-Projects/HEAD/Project-14/images/clear.png -------------------------------------------------------------------------------- /Project-14/images/cloud.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pinaka-Pani-18/Javascript-Projects/HEAD/Project-14/images/cloud.png -------------------------------------------------------------------------------- /Project-14/images/location_not_found.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pinaka-Pani-18/Javascript-Projects/HEAD/Project-14/images/location_not_found.png -------------------------------------------------------------------------------- /Project-14/images/mist.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pinaka-Pani-18/Javascript-Projects/HEAD/Project-14/images/mist.png -------------------------------------------------------------------------------- /Project-14/images/rain.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pinaka-Pani-18/Javascript-Projects/HEAD/Project-14/images/rain.png -------------------------------------------------------------------------------- /Project-14/images/snow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pinaka-Pani-18/Javascript-Projects/HEAD/Project-14/images/snow.png -------------------------------------------------------------------------------- /Project-14/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pinaka-Pani-18/Javascript-Projects/HEAD/Project-14/index.html -------------------------------------------------------------------------------- /Project-14/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pinaka-Pani-18/Javascript-Projects/HEAD/Project-14/index.js -------------------------------------------------------------------------------- /Project-14/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pinaka-Pani-18/Javascript-Projects/HEAD/Project-14/style.css -------------------------------------------------------------------------------- /Project-15/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pinaka-Pani-18/Javascript-Projects/HEAD/Project-15/index.html -------------------------------------------------------------------------------- /Project-15/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pinaka-Pani-18/Javascript-Projects/HEAD/Project-15/index.js -------------------------------------------------------------------------------- /Project-15/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pinaka-Pani-18/Javascript-Projects/HEAD/Project-15/style.css -------------------------------------------------------------------------------- /Project-16/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pinaka-Pani-18/Javascript-Projects/HEAD/Project-16/index.html -------------------------------------------------------------------------------- /Project-16/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pinaka-Pani-18/Javascript-Projects/HEAD/Project-16/index.js -------------------------------------------------------------------------------- /Project-16/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pinaka-Pani-18/Javascript-Projects/HEAD/Project-16/style.css -------------------------------------------------------------------------------- /Project-17/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pinaka-Pani-18/Javascript-Projects/HEAD/Project-17/index.html -------------------------------------------------------------------------------- /Project-17/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pinaka-Pani-18/Javascript-Projects/HEAD/Project-17/index.js -------------------------------------------------------------------------------- /Project-17/location-image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pinaka-Pani-18/Javascript-Projects/HEAD/Project-17/location-image.png -------------------------------------------------------------------------------- /Project-17/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pinaka-Pani-18/Javascript-Projects/HEAD/Project-17/style.css -------------------------------------------------------------------------------- /Project-18/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pinaka-Pani-18/Javascript-Projects/HEAD/Project-18/index.html -------------------------------------------------------------------------------- /Project-18/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pinaka-Pani-18/Javascript-Projects/HEAD/Project-18/index.js -------------------------------------------------------------------------------- /Project-18/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pinaka-Pani-18/Javascript-Projects/HEAD/Project-18/style.css -------------------------------------------------------------------------------- /Project-19/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pinaka-Pani-18/Javascript-Projects/HEAD/Project-19/index.html -------------------------------------------------------------------------------- /Project-19/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pinaka-Pani-18/Javascript-Projects/HEAD/Project-19/index.js -------------------------------------------------------------------------------- /Project-19/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pinaka-Pani-18/Javascript-Projects/HEAD/Project-19/style.css -------------------------------------------------------------------------------- /Project-20/images/paper.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pinaka-Pani-18/Javascript-Projects/HEAD/Project-20/images/paper.jpg -------------------------------------------------------------------------------- /Project-20/images/rock.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pinaka-Pani-18/Javascript-Projects/HEAD/Project-20/images/rock.jpg -------------------------------------------------------------------------------- /Project-20/images/scissor.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pinaka-Pani-18/Javascript-Projects/HEAD/Project-20/images/scissor.jpg -------------------------------------------------------------------------------- /Project-20/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pinaka-Pani-18/Javascript-Projects/HEAD/Project-20/index.html -------------------------------------------------------------------------------- /Project-20/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pinaka-Pani-18/Javascript-Projects/HEAD/Project-20/index.js -------------------------------------------------------------------------------- /Project-20/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pinaka-Pani-18/Javascript-Projects/HEAD/Project-20/style.css -------------------------------------------------------------------------------- /Project-21/check.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pinaka-Pani-18/Javascript-Projects/HEAD/Project-21/check.svg -------------------------------------------------------------------------------- /Project-21/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pinaka-Pani-18/Javascript-Projects/HEAD/Project-21/index.html -------------------------------------------------------------------------------- /Project-21/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pinaka-Pani-18/Javascript-Projects/HEAD/Project-21/index.js -------------------------------------------------------------------------------- /Project-21/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pinaka-Pani-18/Javascript-Projects/HEAD/Project-21/style.css -------------------------------------------------------------------------------- /Project-22/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pinaka-Pani-18/Javascript-Projects/HEAD/Project-22/index.html -------------------------------------------------------------------------------- /Project-22/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pinaka-Pani-18/Javascript-Projects/HEAD/Project-22/index.js -------------------------------------------------------------------------------- /Project-22/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pinaka-Pani-18/Javascript-Projects/HEAD/Project-22/style.css -------------------------------------------------------------------------------- /Project-23/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pinaka-Pani-18/Javascript-Projects/HEAD/Project-23/index.html -------------------------------------------------------------------------------- /Project-23/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pinaka-Pani-18/Javascript-Projects/HEAD/Project-23/index.js -------------------------------------------------------------------------------- /Project-23/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pinaka-Pani-18/Javascript-Projects/HEAD/Project-23/style.css -------------------------------------------------------------------------------- /Project-24/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pinaka-Pani-18/Javascript-Projects/HEAD/Project-24/index.html -------------------------------------------------------------------------------- /Project-24/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pinaka-Pani-18/Javascript-Projects/HEAD/Project-24/index.js -------------------------------------------------------------------------------- /Project-24/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pinaka-Pani-18/Javascript-Projects/HEAD/Project-24/style.css -------------------------------------------------------------------------------- /Project-25/images/average.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pinaka-Pani-18/Javascript-Projects/HEAD/Project-25/images/average.webp -------------------------------------------------------------------------------- /Project-25/images/excellent.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pinaka-Pani-18/Javascript-Projects/HEAD/Project-25/images/excellent.webp -------------------------------------------------------------------------------- /Project-25/images/good.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pinaka-Pani-18/Javascript-Projects/HEAD/Project-25/images/good.webp -------------------------------------------------------------------------------- /Project-25/images/poor.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pinaka-Pani-18/Javascript-Projects/HEAD/Project-25/images/poor.webp -------------------------------------------------------------------------------- /Project-25/images/very_poor.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pinaka-Pani-18/Javascript-Projects/HEAD/Project-25/images/very_poor.webp -------------------------------------------------------------------------------- /Project-25/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pinaka-Pani-18/Javascript-Projects/HEAD/Project-25/index.html -------------------------------------------------------------------------------- /Project-25/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pinaka-Pani-18/Javascript-Projects/HEAD/Project-25/index.js -------------------------------------------------------------------------------- /Project-25/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pinaka-Pani-18/Javascript-Projects/HEAD/Project-25/style.css -------------------------------------------------------------------------------- /Project-26/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pinaka-Pani-18/Javascript-Projects/HEAD/Project-26/index.html -------------------------------------------------------------------------------- /Project-26/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pinaka-Pani-18/Javascript-Projects/HEAD/Project-26/index.js -------------------------------------------------------------------------------- /Project-26/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pinaka-Pani-18/Javascript-Projects/HEAD/Project-26/style.css -------------------------------------------------------------------------------- /Project-27/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pinaka-Pani-18/Javascript-Projects/HEAD/Project-27/index.html -------------------------------------------------------------------------------- /Project-27/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pinaka-Pani-18/Javascript-Projects/HEAD/Project-27/index.js -------------------------------------------------------------------------------- /Project-27/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pinaka-Pani-18/Javascript-Projects/HEAD/Project-27/style.css -------------------------------------------------------------------------------- /Project-28/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pinaka-Pani-18/Javascript-Projects/HEAD/Project-28/index.html -------------------------------------------------------------------------------- /Project-28/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pinaka-Pani-18/Javascript-Projects/HEAD/Project-28/index.js -------------------------------------------------------------------------------- /Project-28/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pinaka-Pani-18/Javascript-Projects/HEAD/Project-28/style.css -------------------------------------------------------------------------------- /Project-29/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pinaka-Pani-18/Javascript-Projects/HEAD/Project-29/index.html -------------------------------------------------------------------------------- /Project-29/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pinaka-Pani-18/Javascript-Projects/HEAD/Project-29/index.js -------------------------------------------------------------------------------- /Project-29/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pinaka-Pani-18/Javascript-Projects/HEAD/Project-29/style.css -------------------------------------------------------------------------------- /Project-30/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pinaka-Pani-18/Javascript-Projects/HEAD/Project-30/index.html -------------------------------------------------------------------------------- /Project-30/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pinaka-Pani-18/Javascript-Projects/HEAD/Project-30/index.js -------------------------------------------------------------------------------- /Project-30/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pinaka-Pani-18/Javascript-Projects/HEAD/Project-30/style.css -------------------------------------------------------------------------------- /Project-31/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pinaka-Pani-18/Javascript-Projects/HEAD/Project-31/index.html -------------------------------------------------------------------------------- /Project-31/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pinaka-Pani-18/Javascript-Projects/HEAD/Project-31/index.js -------------------------------------------------------------------------------- /Project-31/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pinaka-Pani-18/Javascript-Projects/HEAD/Project-31/style.css -------------------------------------------------------------------------------- /Project-32/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pinaka-Pani-18/Javascript-Projects/HEAD/Project-32/index.html -------------------------------------------------------------------------------- /Project-32/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pinaka-Pani-18/Javascript-Projects/HEAD/Project-32/index.js -------------------------------------------------------------------------------- /Project-32/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pinaka-Pani-18/Javascript-Projects/HEAD/Project-32/style.css -------------------------------------------------------------------------------- /Project-33/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pinaka-Pani-18/Javascript-Projects/HEAD/Project-33/index.html -------------------------------------------------------------------------------- /Project-33/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pinaka-Pani-18/Javascript-Projects/HEAD/Project-33/index.js -------------------------------------------------------------------------------- /Project-33/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pinaka-Pani-18/Javascript-Projects/HEAD/Project-33/style.css -------------------------------------------------------------------------------- /Project-34/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pinaka-Pani-18/Javascript-Projects/HEAD/Project-34/index.html -------------------------------------------------------------------------------- /Project-34/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pinaka-Pani-18/Javascript-Projects/HEAD/Project-34/index.js -------------------------------------------------------------------------------- /Project-34/panda.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pinaka-Pani-18/Javascript-Projects/HEAD/Project-34/panda.jpg -------------------------------------------------------------------------------- /Project-34/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pinaka-Pani-18/Javascript-Projects/HEAD/Project-34/style.css -------------------------------------------------------------------------------- /Project-35/images/children1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pinaka-Pani-18/Javascript-Projects/HEAD/Project-35/images/children1.jpg -------------------------------------------------------------------------------- /Project-35/images/children2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pinaka-Pani-18/Javascript-Projects/HEAD/Project-35/images/children2.jpg -------------------------------------------------------------------------------- /Project-35/images/men1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pinaka-Pani-18/Javascript-Projects/HEAD/Project-35/images/men1.jpg -------------------------------------------------------------------------------- /Project-35/images/men2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pinaka-Pani-18/Javascript-Projects/HEAD/Project-35/images/men2.jpg -------------------------------------------------------------------------------- /Project-35/images/women1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pinaka-Pani-18/Javascript-Projects/HEAD/Project-35/images/women1.jpg -------------------------------------------------------------------------------- /Project-35/images/women2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pinaka-Pani-18/Javascript-Projects/HEAD/Project-35/images/women2.jpg -------------------------------------------------------------------------------- /Project-35/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pinaka-Pani-18/Javascript-Projects/HEAD/Project-35/index.html -------------------------------------------------------------------------------- /Project-35/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pinaka-Pani-18/Javascript-Projects/HEAD/Project-35/index.js -------------------------------------------------------------------------------- /Project-35/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pinaka-Pani-18/Javascript-Projects/HEAD/Project-35/style.css -------------------------------------------------------------------------------- /Project-36/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pinaka-Pani-18/Javascript-Projects/HEAD/Project-36/index.html -------------------------------------------------------------------------------- /Project-36/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pinaka-Pani-18/Javascript-Projects/HEAD/Project-36/index.js -------------------------------------------------------------------------------- /Project-36/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pinaka-Pani-18/Javascript-Projects/HEAD/Project-36/style.css -------------------------------------------------------------------------------- /Project-37/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pinaka-Pani-18/Javascript-Projects/HEAD/Project-37/index.html -------------------------------------------------------------------------------- /Project-37/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pinaka-Pani-18/Javascript-Projects/HEAD/Project-37/index.js -------------------------------------------------------------------------------- /Project-37/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pinaka-Pani-18/Javascript-Projects/HEAD/Project-37/style.css -------------------------------------------------------------------------------- /Project-38/eagle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pinaka-Pani-18/Javascript-Projects/HEAD/Project-38/eagle.png -------------------------------------------------------------------------------- /Project-38/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pinaka-Pani-18/Javascript-Projects/HEAD/Project-38/index.html -------------------------------------------------------------------------------- /Project-38/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pinaka-Pani-18/Javascript-Projects/HEAD/Project-38/index.js -------------------------------------------------------------------------------- /Project-38/sky.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pinaka-Pani-18/Javascript-Projects/HEAD/Project-38/sky.jpg -------------------------------------------------------------------------------- /Project-38/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pinaka-Pani-18/Javascript-Projects/HEAD/Project-38/style.css -------------------------------------------------------------------------------- /Project-39/delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pinaka-Pani-18/Javascript-Projects/HEAD/Project-39/delete.png -------------------------------------------------------------------------------- /Project-39/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pinaka-Pani-18/Javascript-Projects/HEAD/Project-39/index.html -------------------------------------------------------------------------------- /Project-39/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pinaka-Pani-18/Javascript-Projects/HEAD/Project-39/index.js -------------------------------------------------------------------------------- /Project-39/notes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pinaka-Pani-18/Javascript-Projects/HEAD/Project-39/notes.png -------------------------------------------------------------------------------- /Project-39/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pinaka-Pani-18/Javascript-Projects/HEAD/Project-39/style.css -------------------------------------------------------------------------------- /Project-40/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pinaka-Pani-18/Javascript-Projects/HEAD/Project-40/index.html -------------------------------------------------------------------------------- /Project-40/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pinaka-Pani-18/Javascript-Projects/HEAD/Project-40/index.js -------------------------------------------------------------------------------- /Project-40/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pinaka-Pani-18/Javascript-Projects/HEAD/Project-40/style.css -------------------------------------------------------------------------------- /Project-41/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pinaka-Pani-18/Javascript-Projects/HEAD/Project-41/index.html -------------------------------------------------------------------------------- /Project-41/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pinaka-Pani-18/Javascript-Projects/HEAD/Project-41/index.js -------------------------------------------------------------------------------- /Project-41/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pinaka-Pani-18/Javascript-Projects/HEAD/Project-41/style.css -------------------------------------------------------------------------------- /Project-42/images/bhuvi_srh.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pinaka-Pani-18/Javascript-Projects/HEAD/Project-42/images/bhuvi_srh.jpg -------------------------------------------------------------------------------- /Project-42/images/dhoni_csk.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pinaka-Pani-18/Javascript-Projects/HEAD/Project-42/images/dhoni_csk.jpg -------------------------------------------------------------------------------- /Project-42/images/duplessis_rcb.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pinaka-Pani-18/Javascript-Projects/HEAD/Project-42/images/duplessis_rcb.jpg -------------------------------------------------------------------------------- /Project-42/images/jadeja_csk.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pinaka-Pani-18/Javascript-Projects/HEAD/Project-42/images/jadeja_csk.jpg -------------------------------------------------------------------------------- /Project-42/images/markram_srh.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pinaka-Pani-18/Javascript-Projects/HEAD/Project-42/images/markram_srh.jpg -------------------------------------------------------------------------------- /Project-42/images/rohith_mi.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pinaka-Pani-18/Javascript-Projects/HEAD/Project-42/images/rohith_mi.webp -------------------------------------------------------------------------------- /Project-42/images/surya_mi.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pinaka-Pani-18/Javascript-Projects/HEAD/Project-42/images/surya_mi.jpg -------------------------------------------------------------------------------- /Project-42/images/virat_rcb.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pinaka-Pani-18/Javascript-Projects/HEAD/Project-42/images/virat_rcb.webp -------------------------------------------------------------------------------- /Project-42/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pinaka-Pani-18/Javascript-Projects/HEAD/Project-42/index.html -------------------------------------------------------------------------------- /Project-42/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pinaka-Pani-18/Javascript-Projects/HEAD/Project-42/index.js -------------------------------------------------------------------------------- /Project-42/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pinaka-Pani-18/Javascript-Projects/HEAD/Project-42/style.css -------------------------------------------------------------------------------- /Project-43/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pinaka-Pani-18/Javascript-Projects/HEAD/Project-43/index.html -------------------------------------------------------------------------------- /Project-43/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pinaka-Pani-18/Javascript-Projects/HEAD/Project-43/index.js -------------------------------------------------------------------------------- /Project-43/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pinaka-Pani-18/Javascript-Projects/HEAD/Project-43/style.css -------------------------------------------------------------------------------- /Project-44/iamge.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pinaka-Pani-18/Javascript-Projects/HEAD/Project-44/iamge.jpg -------------------------------------------------------------------------------- /Project-44/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pinaka-Pani-18/Javascript-Projects/HEAD/Project-44/index.html -------------------------------------------------------------------------------- /Project-44/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pinaka-Pani-18/Javascript-Projects/HEAD/Project-44/index.js -------------------------------------------------------------------------------- /Project-44/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pinaka-Pani-18/Javascript-Projects/HEAD/Project-44/style.css -------------------------------------------------------------------------------- /Project-45/images/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pinaka-Pani-18/Javascript-Projects/HEAD/Project-45/images/1.jpg -------------------------------------------------------------------------------- /Project-45/images/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pinaka-Pani-18/Javascript-Projects/HEAD/Project-45/images/2.jpg -------------------------------------------------------------------------------- /Project-45/images/3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pinaka-Pani-18/Javascript-Projects/HEAD/Project-45/images/3.jpg -------------------------------------------------------------------------------- /Project-45/images/4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pinaka-Pani-18/Javascript-Projects/HEAD/Project-45/images/4.jpg -------------------------------------------------------------------------------- /Project-45/images/5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pinaka-Pani-18/Javascript-Projects/HEAD/Project-45/images/5.jpg -------------------------------------------------------------------------------- /Project-45/images/6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pinaka-Pani-18/Javascript-Projects/HEAD/Project-45/images/6.jpg -------------------------------------------------------------------------------- /Project-45/images/7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pinaka-Pani-18/Javascript-Projects/HEAD/Project-45/images/7.jpg -------------------------------------------------------------------------------- /Project-45/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pinaka-Pani-18/Javascript-Projects/HEAD/Project-45/index.html -------------------------------------------------------------------------------- /Project-45/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pinaka-Pani-18/Javascript-Projects/HEAD/Project-45/index.js -------------------------------------------------------------------------------- /Project-45/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pinaka-Pani-18/Javascript-Projects/HEAD/Project-45/style.css -------------------------------------------------------------------------------- /Project-46/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pinaka-Pani-18/Javascript-Projects/HEAD/Project-46/index.html -------------------------------------------------------------------------------- /Project-46/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pinaka-Pani-18/Javascript-Projects/HEAD/Project-46/index.js -------------------------------------------------------------------------------- /Project-46/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pinaka-Pani-18/Javascript-Projects/HEAD/Project-46/style.css -------------------------------------------------------------------------------- /Project-47/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pinaka-Pani-18/Javascript-Projects/HEAD/Project-47/index.html -------------------------------------------------------------------------------- /Project-47/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pinaka-Pani-18/Javascript-Projects/HEAD/Project-47/index.js -------------------------------------------------------------------------------- /Project-47/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pinaka-Pani-18/Javascript-Projects/HEAD/Project-47/style.css -------------------------------------------------------------------------------- /Project-48/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pinaka-Pani-18/Javascript-Projects/HEAD/Project-48/index.html -------------------------------------------------------------------------------- /Project-48/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pinaka-Pani-18/Javascript-Projects/HEAD/Project-48/index.js -------------------------------------------------------------------------------- /Project-48/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pinaka-Pani-18/Javascript-Projects/HEAD/Project-48/style.css -------------------------------------------------------------------------------- /Project-49/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pinaka-Pani-18/Javascript-Projects/HEAD/Project-49/index.html -------------------------------------------------------------------------------- /Project-49/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pinaka-Pani-18/Javascript-Projects/HEAD/Project-49/index.js -------------------------------------------------------------------------------- /Project-49/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pinaka-Pani-18/Javascript-Projects/HEAD/Project-49/style.css -------------------------------------------------------------------------------- /Project-50/O-Player.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pinaka-Pani-18/Javascript-Projects/HEAD/Project-50/O-Player.png -------------------------------------------------------------------------------- /Project-50/X-Player.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pinaka-Pani-18/Javascript-Projects/HEAD/Project-50/X-Player.png -------------------------------------------------------------------------------- /Project-50/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pinaka-Pani-18/Javascript-Projects/HEAD/Project-50/index.html -------------------------------------------------------------------------------- /Project-50/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pinaka-Pani-18/Javascript-Projects/HEAD/Project-50/index.js -------------------------------------------------------------------------------- /Project-50/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pinaka-Pani-18/Javascript-Projects/HEAD/Project-50/style.css -------------------------------------------------------------------------------- /Project/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pinaka-Pani-18/Javascript-Projects/HEAD/Project/1.jpg -------------------------------------------------------------------------------- /Project/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pinaka-Pani-18/Javascript-Projects/HEAD/Project/index.html -------------------------------------------------------------------------------- /Project/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pinaka-Pani-18/Javascript-Projects/HEAD/Project/index.js -------------------------------------------------------------------------------- /Project/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pinaka-Pani-18/Javascript-Projects/HEAD/Project/style.css -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pinaka-Pani-18/Javascript-Projects/HEAD/README.md --------------------------------------------------------------------------------