├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── pull_request_template.md └── workflows │ ├── checker.yml │ ├── contributors.yml │ ├── greetings.yml │ └── main.yml ├── .vscode └── settings.json ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── Projects ├── Admin Dashboard │ ├── assets │ │ ├── adminIcon.png │ │ ├── css │ │ │ └── style.css │ │ └── js │ │ │ └── index.js │ ├── index.html │ ├── preview │ │ ├── darkmode.png │ │ └── lightmode.png │ └── readme.md ├── CRUD Based Website │ ├── 404.html │ ├── README.md │ ├── css │ │ ├── edit.css │ │ └── profile.css │ ├── edit.html │ ├── images │ │ ├── avatar.png │ │ ├── avatar.svg │ │ ├── flower.jpg │ │ ├── flowers.jpeg │ │ ├── hexagonal.jpg │ │ ├── hive.jpg │ │ ├── pexels-jakub-novacek-924824.jpg │ │ └── wave.png │ ├── index.html │ ├── js │ │ ├── edit.js │ │ ├── home.js │ │ ├── profile.js │ │ └── script.js │ ├── paralax.html │ ├── profile.html │ └── style.css ├── CarHomePage │ ├── README.md │ ├── app.json │ ├── close.png │ ├── home.html │ ├── homepage.css │ ├── index.php │ ├── kenny-eliason-orGJcWVI6js-unsplash.jpg │ └── menu.png ├── Codeclub │ ├── README.md │ ├── about.html │ ├── index.html │ ├── members.html │ ├── password.html │ ├── password.js │ └── styles.css ├── DarkSwitch │ ├── README.md │ └── index.html ├── Drum Player │ ├── README.md │ ├── images │ │ ├── crash.png │ │ ├── kick.png │ │ ├── snare.png │ │ ├── tom1.png │ │ ├── tom2.png │ │ ├── tom3.png │ │ └── tom4.png │ ├── index.html │ ├── index.js │ ├── sounds │ │ ├── crash.mp3 │ │ ├── kick-bass.mp3 │ │ ├── snare.mp3 │ │ ├── tom-1.mp3 │ │ ├── tom-2.mp3 │ │ ├── tom-3.mp3 │ │ └── tom-4.mp3 │ └── styles.css ├── Form Input Wave │ ├── index.html │ ├── script.js │ └── style.css ├── Gallery Webpage │ ├── index.html │ └── styles.css ├── Gallery for Cars │ ├── Audi.jpg │ ├── Bentley.jpg │ ├── Chevrolet.jpg │ ├── Fiat.png │ ├── Honda.jpg │ ├── Jaguar.jpg │ ├── Jeep.webp │ ├── Land-Rover.jpg │ ├── Lexus.jpg │ ├── PORSCHE.jpg │ ├── README.md │ ├── Volvo-car.jpg │ ├── app.json │ ├── bugatti.jpg │ ├── close.png │ ├── ford.jpg │ ├── gallery.js │ ├── gallery1.css │ ├── gallery2.css │ ├── hello.jpg │ ├── home.html │ ├── index.php │ ├── menu.png │ ├── mercedes-Benz.jpg │ ├── nissan.jpg │ └── rolls-royce.jpg ├── Game_of_Thrones │ ├── .vscode │ │ └── settings.json │ ├── Game_of_Thrones_title_card.jpg │ ├── README.md │ ├── gameofthrones-allseasons.jpg │ ├── got.jpg │ ├── index.html │ └── style.css ├── Guess the number │ ├── index.html │ ├── script.js │ └── style.css ├── Netflix Homepage Clone │ ├── Assets │ │ ├── android-icon-144x144.png │ │ ├── android-icon-192x192.png │ │ ├── android-icon-36x36.png │ │ ├── android-icon-48x48.png │ │ ├── android-icon-72x72.png │ │ ├── android-icon-96x96.png │ │ ├── apple-icon-114x114.png │ │ ├── apple-icon-120x120.png │ │ ├── apple-icon-144x144.png │ │ ├── apple-icon-152x152.png │ │ ├── apple-icon-180x180.png │ │ ├── apple-icon-57x57.png │ │ ├── apple-icon-60x60.png │ │ ├── apple-icon-72x72.png │ │ ├── apple-icon-76x76.png │ │ ├── apple-icon-precomposed.png │ │ ├── apple-icon.png │ │ ├── browserconfig.xml │ │ ├── favicon-16x16.png │ │ ├── favicon-32x32.png │ │ ├── favicon-96x96.png │ │ ├── favicon.ico │ │ ├── manifest.json │ │ ├── ms-icon-144x144.png │ │ ├── ms-icon-150x150.png │ │ ├── ms-icon-310x310.png │ │ └── ms-icon-70x70.png │ ├── Images │ │ ├── AAAABVxdX2WnFSp49eXb1do0euaj-F8upNImjofE77XStKhf5kUHG94DPlTiGYqPeYNtiox-82NWEK0Ls3CnLe3WWClGdiJP.png │ │ ├── IN-en-20210524-popsignuptwoweeks-perspective_alpha_website_large.jpg │ │ ├── device-pile-in.png │ │ ├── download-icon.gif │ │ ├── netflix-logo-png-2562.png │ │ ├── netflix_logo_icon_170919.ico │ │ └── tv.png │ ├── index.html │ └── style.css ├── Note Maker │ ├── Read.md │ ├── Screenshot (14).png │ ├── index.html │ ├── index.js │ └── style.css ├── Parallax Website │ ├── css │ │ └── main.css │ ├── img │ │ ├── img1.jpeg │ │ ├── img2.jpeg │ │ ├── img3-2.jpeg │ │ ├── img3-3.jpeg │ │ ├── img3.jpeg │ │ ├── logo1.png │ │ ├── logo2.png │ │ ├── logo3.png │ │ ├── logo4.png │ │ ├── name.png │ │ ├── name2.png │ │ ├── name3.png │ │ ├── name4.png │ │ ├── quote1.png │ │ ├── quote2.png │ │ ├── quote3.png │ │ ├── quote4.png │ │ ├── quote5.png │ │ ├── quote6-a.png │ │ └── quote6.png │ └── index.html ├── Random-rectangle-generator-onMousecClick │ ├── attachBindings.js │ ├── handlers.js │ └── index.html ├── Responsive Landing Page │ ├── assets │ │ ├── shoe.jpeg │ │ ├── shoe2.jpeg │ │ ├── shoe3.jpeg │ │ └── shoe4.jpeg │ ├── css │ │ ├── main.css │ │ ├── main.css.map │ │ └── main.scss │ └── index.html ├── SKDRCLASSES │ ├── 1.jpeg │ ├── 2.jfif │ ├── css │ │ └── style.css │ ├── gallery │ │ ├── 10.jfif │ │ ├── 11.jfif │ │ ├── 12.jfif │ │ ├── 13.jfif │ │ ├── 3.jfif │ │ ├── 4.jfif │ │ ├── 5.jfif │ │ ├── 6.jfif │ │ ├── 7.jfif │ │ ├── 8.jfif │ │ └── 9.jfif │ └── index.html ├── STICKY NOTES │ └── CRUD.html ├── TheSnakeGame │ ├── README.md │ ├── Resources.txt │ ├── app.json │ ├── css │ │ └── style.css │ ├── eat.mp3 │ ├── home.html │ ├── index.php │ ├── js │ │ └── index.js │ ├── keepMoving.mp3 │ ├── music.mp3 │ ├── over.mp3 │ └── snake.jpg ├── TicTacToe │ ├── README.md │ ├── app.json │ ├── excited.gif │ ├── gameover.mp3 │ ├── home.html │ ├── index.php │ ├── music.mp3 │ ├── script.js │ ├── style.css │ └── ting.mp3 ├── tailwind_website │ ├── 1.jpg │ ├── 4.jpg │ ├── 5.jpg │ ├── 6.jpg │ ├── Bowker, Gordon.jpg │ ├── Safeimagekit-resized-imgpng.png │ ├── WhatsApp Image 2022-03-09 at 10.36.53 PM.jpeg │ ├── download.jpeg │ ├── feat_3.png │ ├── gerald-baldwin.jpg │ ├── girl.jpeg │ ├── ice.jpg │ ├── iced-caramel-macchiato.jpg │ ├── index.html │ ├── logo-instagram-png-13551.png │ ├── logo.png │ ├── meta.png │ ├── mocha.png │ ├── package-lock.json │ ├── package.json │ ├── postcss.config.js │ ├── pperment.png │ ├── starbucks-coffee-jubilee-hills-1613556641.jpg │ ├── styles.css │ ├── tailwind.config.js │ ├── twitter-icon-83.png │ └── zev.webp ├── tribute page │ ├── images │ │ └── Dr._Bhimrao_Ambedkar.jpg │ ├── index.html │ └── styles.css ├── typefast_touch_typing_site │ ├── index.html │ ├── index.js │ └── style1.css └── whiteboard │ ├── .vscode │ └── settings.json │ ├── Readme.md │ ├── index.html │ └── script.js └── README.md /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham7668/WebDev/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham7668/WebDev/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham7668/WebDev/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/workflows/checker.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham7668/WebDev/HEAD/.github/workflows/checker.yml -------------------------------------------------------------------------------- /.github/workflows/contributors.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham7668/WebDev/HEAD/.github/workflows/contributors.yml -------------------------------------------------------------------------------- /.github/workflows/greetings.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham7668/WebDev/HEAD/.github/workflows/greetings.yml -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham7668/WebDev/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "liveServer.settings.port": 5501 3 | } -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham7668/WebDev/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham7668/WebDev/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham7668/WebDev/HEAD/LICENSE -------------------------------------------------------------------------------- /Projects/Admin Dashboard/assets/adminIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham7668/WebDev/HEAD/Projects/Admin Dashboard/assets/adminIcon.png -------------------------------------------------------------------------------- /Projects/Admin Dashboard/assets/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham7668/WebDev/HEAD/Projects/Admin Dashboard/assets/css/style.css -------------------------------------------------------------------------------- /Projects/Admin Dashboard/assets/js/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham7668/WebDev/HEAD/Projects/Admin Dashboard/assets/js/index.js -------------------------------------------------------------------------------- /Projects/Admin Dashboard/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham7668/WebDev/HEAD/Projects/Admin Dashboard/index.html -------------------------------------------------------------------------------- /Projects/Admin Dashboard/preview/darkmode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham7668/WebDev/HEAD/Projects/Admin Dashboard/preview/darkmode.png -------------------------------------------------------------------------------- /Projects/Admin Dashboard/preview/lightmode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham7668/WebDev/HEAD/Projects/Admin Dashboard/preview/lightmode.png -------------------------------------------------------------------------------- /Projects/Admin Dashboard/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham7668/WebDev/HEAD/Projects/Admin Dashboard/readme.md -------------------------------------------------------------------------------- /Projects/CRUD Based Website/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham7668/WebDev/HEAD/Projects/CRUD Based Website/404.html -------------------------------------------------------------------------------- /Projects/CRUD Based Website/README.md: -------------------------------------------------------------------------------- 1 | ## CRUD Based Website 2 | 3 | Hosted Link : https://crud-five-liart.vercel.app/ 4 | -------------------------------------------------------------------------------- /Projects/CRUD Based Website/css/edit.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham7668/WebDev/HEAD/Projects/CRUD Based Website/css/edit.css -------------------------------------------------------------------------------- /Projects/CRUD Based Website/css/profile.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham7668/WebDev/HEAD/Projects/CRUD Based Website/css/profile.css -------------------------------------------------------------------------------- /Projects/CRUD Based Website/edit.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham7668/WebDev/HEAD/Projects/CRUD Based Website/edit.html -------------------------------------------------------------------------------- /Projects/CRUD Based Website/images/avatar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham7668/WebDev/HEAD/Projects/CRUD Based Website/images/avatar.png -------------------------------------------------------------------------------- /Projects/CRUD Based Website/images/avatar.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham7668/WebDev/HEAD/Projects/CRUD Based Website/images/avatar.svg -------------------------------------------------------------------------------- /Projects/CRUD Based Website/images/flower.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham7668/WebDev/HEAD/Projects/CRUD Based Website/images/flower.jpg -------------------------------------------------------------------------------- /Projects/CRUD Based Website/images/flowers.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham7668/WebDev/HEAD/Projects/CRUD Based Website/images/flowers.jpeg -------------------------------------------------------------------------------- /Projects/CRUD Based Website/images/hexagonal.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham7668/WebDev/HEAD/Projects/CRUD Based Website/images/hexagonal.jpg -------------------------------------------------------------------------------- /Projects/CRUD Based Website/images/hive.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham7668/WebDev/HEAD/Projects/CRUD Based Website/images/hive.jpg -------------------------------------------------------------------------------- /Projects/CRUD Based Website/images/pexels-jakub-novacek-924824.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham7668/WebDev/HEAD/Projects/CRUD Based Website/images/pexels-jakub-novacek-924824.jpg -------------------------------------------------------------------------------- /Projects/CRUD Based Website/images/wave.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham7668/WebDev/HEAD/Projects/CRUD Based Website/images/wave.png -------------------------------------------------------------------------------- /Projects/CRUD Based Website/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham7668/WebDev/HEAD/Projects/CRUD Based Website/index.html -------------------------------------------------------------------------------- /Projects/CRUD Based Website/js/edit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham7668/WebDev/HEAD/Projects/CRUD Based Website/js/edit.js -------------------------------------------------------------------------------- /Projects/CRUD Based Website/js/home.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham7668/WebDev/HEAD/Projects/CRUD Based Website/js/home.js -------------------------------------------------------------------------------- /Projects/CRUD Based Website/js/profile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham7668/WebDev/HEAD/Projects/CRUD Based Website/js/profile.js -------------------------------------------------------------------------------- /Projects/CRUD Based Website/js/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham7668/WebDev/HEAD/Projects/CRUD Based Website/js/script.js -------------------------------------------------------------------------------- /Projects/CRUD Based Website/paralax.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham7668/WebDev/HEAD/Projects/CRUD Based Website/paralax.html -------------------------------------------------------------------------------- /Projects/CRUD Based Website/profile.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham7668/WebDev/HEAD/Projects/CRUD Based Website/profile.html -------------------------------------------------------------------------------- /Projects/CRUD Based Website/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham7668/WebDev/HEAD/Projects/CRUD Based Website/style.css -------------------------------------------------------------------------------- /Projects/CarHomePage/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham7668/WebDev/HEAD/Projects/CarHomePage/README.md -------------------------------------------------------------------------------- /Projects/CarHomePage/app.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /Projects/CarHomePage/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham7668/WebDev/HEAD/Projects/CarHomePage/close.png -------------------------------------------------------------------------------- /Projects/CarHomePage/home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham7668/WebDev/HEAD/Projects/CarHomePage/home.html -------------------------------------------------------------------------------- /Projects/CarHomePage/homepage.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham7668/WebDev/HEAD/Projects/CarHomePage/homepage.css -------------------------------------------------------------------------------- /Projects/CarHomePage/index.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Projects/CarHomePage/kenny-eliason-orGJcWVI6js-unsplash.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham7668/WebDev/HEAD/Projects/CarHomePage/kenny-eliason-orGJcWVI6js-unsplash.jpg -------------------------------------------------------------------------------- /Projects/CarHomePage/menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham7668/WebDev/HEAD/Projects/CarHomePage/menu.png -------------------------------------------------------------------------------- /Projects/Codeclub/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham7668/WebDev/HEAD/Projects/Codeclub/README.md -------------------------------------------------------------------------------- /Projects/Codeclub/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham7668/WebDev/HEAD/Projects/Codeclub/about.html -------------------------------------------------------------------------------- /Projects/Codeclub/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham7668/WebDev/HEAD/Projects/Codeclub/index.html -------------------------------------------------------------------------------- /Projects/Codeclub/members.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham7668/WebDev/HEAD/Projects/Codeclub/members.html -------------------------------------------------------------------------------- /Projects/Codeclub/password.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham7668/WebDev/HEAD/Projects/Codeclub/password.html -------------------------------------------------------------------------------- /Projects/Codeclub/password.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham7668/WebDev/HEAD/Projects/Codeclub/password.js -------------------------------------------------------------------------------- /Projects/Codeclub/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham7668/WebDev/HEAD/Projects/Codeclub/styles.css -------------------------------------------------------------------------------- /Projects/DarkSwitch/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham7668/WebDev/HEAD/Projects/DarkSwitch/README.md -------------------------------------------------------------------------------- /Projects/DarkSwitch/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham7668/WebDev/HEAD/Projects/DarkSwitch/index.html -------------------------------------------------------------------------------- /Projects/Drum Player/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham7668/WebDev/HEAD/Projects/Drum Player/README.md -------------------------------------------------------------------------------- /Projects/Drum Player/images/crash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham7668/WebDev/HEAD/Projects/Drum Player/images/crash.png -------------------------------------------------------------------------------- /Projects/Drum Player/images/kick.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham7668/WebDev/HEAD/Projects/Drum Player/images/kick.png -------------------------------------------------------------------------------- /Projects/Drum Player/images/snare.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham7668/WebDev/HEAD/Projects/Drum Player/images/snare.png -------------------------------------------------------------------------------- /Projects/Drum Player/images/tom1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham7668/WebDev/HEAD/Projects/Drum Player/images/tom1.png -------------------------------------------------------------------------------- /Projects/Drum Player/images/tom2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham7668/WebDev/HEAD/Projects/Drum Player/images/tom2.png -------------------------------------------------------------------------------- /Projects/Drum Player/images/tom3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham7668/WebDev/HEAD/Projects/Drum Player/images/tom3.png -------------------------------------------------------------------------------- /Projects/Drum Player/images/tom4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham7668/WebDev/HEAD/Projects/Drum Player/images/tom4.png -------------------------------------------------------------------------------- /Projects/Drum Player/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham7668/WebDev/HEAD/Projects/Drum Player/index.html -------------------------------------------------------------------------------- /Projects/Drum Player/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham7668/WebDev/HEAD/Projects/Drum Player/index.js -------------------------------------------------------------------------------- /Projects/Drum Player/sounds/crash.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham7668/WebDev/HEAD/Projects/Drum Player/sounds/crash.mp3 -------------------------------------------------------------------------------- /Projects/Drum Player/sounds/kick-bass.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham7668/WebDev/HEAD/Projects/Drum Player/sounds/kick-bass.mp3 -------------------------------------------------------------------------------- /Projects/Drum Player/sounds/snare.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham7668/WebDev/HEAD/Projects/Drum Player/sounds/snare.mp3 -------------------------------------------------------------------------------- /Projects/Drum Player/sounds/tom-1.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham7668/WebDev/HEAD/Projects/Drum Player/sounds/tom-1.mp3 -------------------------------------------------------------------------------- /Projects/Drum Player/sounds/tom-2.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham7668/WebDev/HEAD/Projects/Drum Player/sounds/tom-2.mp3 -------------------------------------------------------------------------------- /Projects/Drum Player/sounds/tom-3.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham7668/WebDev/HEAD/Projects/Drum Player/sounds/tom-3.mp3 -------------------------------------------------------------------------------- /Projects/Drum Player/sounds/tom-4.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham7668/WebDev/HEAD/Projects/Drum Player/sounds/tom-4.mp3 -------------------------------------------------------------------------------- /Projects/Drum Player/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham7668/WebDev/HEAD/Projects/Drum Player/styles.css -------------------------------------------------------------------------------- /Projects/Form Input Wave/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham7668/WebDev/HEAD/Projects/Form Input Wave/index.html -------------------------------------------------------------------------------- /Projects/Form Input Wave/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham7668/WebDev/HEAD/Projects/Form Input Wave/script.js -------------------------------------------------------------------------------- /Projects/Form Input Wave/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham7668/WebDev/HEAD/Projects/Form Input Wave/style.css -------------------------------------------------------------------------------- /Projects/Gallery Webpage/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham7668/WebDev/HEAD/Projects/Gallery Webpage/index.html -------------------------------------------------------------------------------- /Projects/Gallery Webpage/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham7668/WebDev/HEAD/Projects/Gallery Webpage/styles.css -------------------------------------------------------------------------------- /Projects/Gallery for Cars/Audi.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham7668/WebDev/HEAD/Projects/Gallery for Cars/Audi.jpg -------------------------------------------------------------------------------- /Projects/Gallery for Cars/Bentley.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham7668/WebDev/HEAD/Projects/Gallery for Cars/Bentley.jpg -------------------------------------------------------------------------------- /Projects/Gallery for Cars/Chevrolet.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham7668/WebDev/HEAD/Projects/Gallery for Cars/Chevrolet.jpg -------------------------------------------------------------------------------- /Projects/Gallery for Cars/Fiat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham7668/WebDev/HEAD/Projects/Gallery for Cars/Fiat.png -------------------------------------------------------------------------------- /Projects/Gallery for Cars/Honda.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham7668/WebDev/HEAD/Projects/Gallery for Cars/Honda.jpg -------------------------------------------------------------------------------- /Projects/Gallery for Cars/Jaguar.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham7668/WebDev/HEAD/Projects/Gallery for Cars/Jaguar.jpg -------------------------------------------------------------------------------- /Projects/Gallery for Cars/Jeep.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham7668/WebDev/HEAD/Projects/Gallery for Cars/Jeep.webp -------------------------------------------------------------------------------- /Projects/Gallery for Cars/Land-Rover.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham7668/WebDev/HEAD/Projects/Gallery for Cars/Land-Rover.jpg -------------------------------------------------------------------------------- /Projects/Gallery for Cars/Lexus.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham7668/WebDev/HEAD/Projects/Gallery for Cars/Lexus.jpg -------------------------------------------------------------------------------- /Projects/Gallery for Cars/PORSCHE.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham7668/WebDev/HEAD/Projects/Gallery for Cars/PORSCHE.jpg -------------------------------------------------------------------------------- /Projects/Gallery for Cars/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham7668/WebDev/HEAD/Projects/Gallery for Cars/README.md -------------------------------------------------------------------------------- /Projects/Gallery for Cars/Volvo-car.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham7668/WebDev/HEAD/Projects/Gallery for Cars/Volvo-car.jpg -------------------------------------------------------------------------------- /Projects/Gallery for Cars/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham7668/WebDev/HEAD/Projects/Gallery for Cars/app.json -------------------------------------------------------------------------------- /Projects/Gallery for Cars/bugatti.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham7668/WebDev/HEAD/Projects/Gallery for Cars/bugatti.jpg -------------------------------------------------------------------------------- /Projects/Gallery for Cars/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham7668/WebDev/HEAD/Projects/Gallery for Cars/close.png -------------------------------------------------------------------------------- /Projects/Gallery for Cars/ford.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham7668/WebDev/HEAD/Projects/Gallery for Cars/ford.jpg -------------------------------------------------------------------------------- /Projects/Gallery for Cars/gallery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham7668/WebDev/HEAD/Projects/Gallery for Cars/gallery.js -------------------------------------------------------------------------------- /Projects/Gallery for Cars/gallery1.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham7668/WebDev/HEAD/Projects/Gallery for Cars/gallery1.css -------------------------------------------------------------------------------- /Projects/Gallery for Cars/gallery2.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham7668/WebDev/HEAD/Projects/Gallery for Cars/gallery2.css -------------------------------------------------------------------------------- /Projects/Gallery for Cars/hello.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham7668/WebDev/HEAD/Projects/Gallery for Cars/hello.jpg -------------------------------------------------------------------------------- /Projects/Gallery for Cars/home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham7668/WebDev/HEAD/Projects/Gallery for Cars/home.html -------------------------------------------------------------------------------- /Projects/Gallery for Cars/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham7668/WebDev/HEAD/Projects/Gallery for Cars/index.php -------------------------------------------------------------------------------- /Projects/Gallery for Cars/menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham7668/WebDev/HEAD/Projects/Gallery for Cars/menu.png -------------------------------------------------------------------------------- /Projects/Gallery for Cars/mercedes-Benz.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham7668/WebDev/HEAD/Projects/Gallery for Cars/mercedes-Benz.jpg -------------------------------------------------------------------------------- /Projects/Gallery for Cars/nissan.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham7668/WebDev/HEAD/Projects/Gallery for Cars/nissan.jpg -------------------------------------------------------------------------------- /Projects/Gallery for Cars/rolls-royce.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham7668/WebDev/HEAD/Projects/Gallery for Cars/rolls-royce.jpg -------------------------------------------------------------------------------- /Projects/Game_of_Thrones/.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "liveServer.settings.port": 5501 3 | } -------------------------------------------------------------------------------- /Projects/Game_of_Thrones/Game_of_Thrones_title_card.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham7668/WebDev/HEAD/Projects/Game_of_Thrones/Game_of_Thrones_title_card.jpg -------------------------------------------------------------------------------- /Projects/Game_of_Thrones/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham7668/WebDev/HEAD/Projects/Game_of_Thrones/README.md -------------------------------------------------------------------------------- /Projects/Game_of_Thrones/gameofthrones-allseasons.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham7668/WebDev/HEAD/Projects/Game_of_Thrones/gameofthrones-allseasons.jpg -------------------------------------------------------------------------------- /Projects/Game_of_Thrones/got.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham7668/WebDev/HEAD/Projects/Game_of_Thrones/got.jpg -------------------------------------------------------------------------------- /Projects/Game_of_Thrones/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham7668/WebDev/HEAD/Projects/Game_of_Thrones/index.html -------------------------------------------------------------------------------- /Projects/Game_of_Thrones/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham7668/WebDev/HEAD/Projects/Game_of_Thrones/style.css -------------------------------------------------------------------------------- /Projects/Guess the number/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham7668/WebDev/HEAD/Projects/Guess the number/index.html -------------------------------------------------------------------------------- /Projects/Guess the number/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham7668/WebDev/HEAD/Projects/Guess the number/script.js -------------------------------------------------------------------------------- /Projects/Guess the number/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham7668/WebDev/HEAD/Projects/Guess the number/style.css -------------------------------------------------------------------------------- /Projects/Netflix Homepage Clone/Assets/android-icon-144x144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham7668/WebDev/HEAD/Projects/Netflix Homepage Clone/Assets/android-icon-144x144.png -------------------------------------------------------------------------------- /Projects/Netflix Homepage Clone/Assets/android-icon-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham7668/WebDev/HEAD/Projects/Netflix Homepage Clone/Assets/android-icon-192x192.png -------------------------------------------------------------------------------- /Projects/Netflix Homepage Clone/Assets/android-icon-36x36.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham7668/WebDev/HEAD/Projects/Netflix Homepage Clone/Assets/android-icon-36x36.png -------------------------------------------------------------------------------- /Projects/Netflix Homepage Clone/Assets/android-icon-48x48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham7668/WebDev/HEAD/Projects/Netflix Homepage Clone/Assets/android-icon-48x48.png -------------------------------------------------------------------------------- /Projects/Netflix Homepage Clone/Assets/android-icon-72x72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham7668/WebDev/HEAD/Projects/Netflix Homepage Clone/Assets/android-icon-72x72.png -------------------------------------------------------------------------------- /Projects/Netflix Homepage Clone/Assets/android-icon-96x96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham7668/WebDev/HEAD/Projects/Netflix Homepage Clone/Assets/android-icon-96x96.png -------------------------------------------------------------------------------- /Projects/Netflix Homepage Clone/Assets/apple-icon-114x114.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham7668/WebDev/HEAD/Projects/Netflix Homepage Clone/Assets/apple-icon-114x114.png -------------------------------------------------------------------------------- /Projects/Netflix Homepage Clone/Assets/apple-icon-120x120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham7668/WebDev/HEAD/Projects/Netflix Homepage Clone/Assets/apple-icon-120x120.png -------------------------------------------------------------------------------- /Projects/Netflix Homepage Clone/Assets/apple-icon-144x144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham7668/WebDev/HEAD/Projects/Netflix Homepage Clone/Assets/apple-icon-144x144.png -------------------------------------------------------------------------------- /Projects/Netflix Homepage Clone/Assets/apple-icon-152x152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham7668/WebDev/HEAD/Projects/Netflix Homepage Clone/Assets/apple-icon-152x152.png -------------------------------------------------------------------------------- /Projects/Netflix Homepage Clone/Assets/apple-icon-180x180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham7668/WebDev/HEAD/Projects/Netflix Homepage Clone/Assets/apple-icon-180x180.png -------------------------------------------------------------------------------- /Projects/Netflix Homepage Clone/Assets/apple-icon-57x57.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham7668/WebDev/HEAD/Projects/Netflix Homepage Clone/Assets/apple-icon-57x57.png -------------------------------------------------------------------------------- /Projects/Netflix Homepage Clone/Assets/apple-icon-60x60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham7668/WebDev/HEAD/Projects/Netflix Homepage Clone/Assets/apple-icon-60x60.png -------------------------------------------------------------------------------- /Projects/Netflix Homepage Clone/Assets/apple-icon-72x72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham7668/WebDev/HEAD/Projects/Netflix Homepage Clone/Assets/apple-icon-72x72.png -------------------------------------------------------------------------------- /Projects/Netflix Homepage Clone/Assets/apple-icon-76x76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham7668/WebDev/HEAD/Projects/Netflix Homepage Clone/Assets/apple-icon-76x76.png -------------------------------------------------------------------------------- /Projects/Netflix Homepage Clone/Assets/apple-icon-precomposed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham7668/WebDev/HEAD/Projects/Netflix Homepage Clone/Assets/apple-icon-precomposed.png -------------------------------------------------------------------------------- /Projects/Netflix Homepage Clone/Assets/apple-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham7668/WebDev/HEAD/Projects/Netflix Homepage Clone/Assets/apple-icon.png -------------------------------------------------------------------------------- /Projects/Netflix Homepage Clone/Assets/browserconfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham7668/WebDev/HEAD/Projects/Netflix Homepage Clone/Assets/browserconfig.xml -------------------------------------------------------------------------------- /Projects/Netflix Homepage Clone/Assets/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham7668/WebDev/HEAD/Projects/Netflix Homepage Clone/Assets/favicon-16x16.png -------------------------------------------------------------------------------- /Projects/Netflix Homepage Clone/Assets/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham7668/WebDev/HEAD/Projects/Netflix Homepage Clone/Assets/favicon-32x32.png -------------------------------------------------------------------------------- /Projects/Netflix Homepage Clone/Assets/favicon-96x96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham7668/WebDev/HEAD/Projects/Netflix Homepage Clone/Assets/favicon-96x96.png -------------------------------------------------------------------------------- /Projects/Netflix Homepage Clone/Assets/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham7668/WebDev/HEAD/Projects/Netflix Homepage Clone/Assets/favicon.ico -------------------------------------------------------------------------------- /Projects/Netflix Homepage Clone/Assets/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham7668/WebDev/HEAD/Projects/Netflix Homepage Clone/Assets/manifest.json -------------------------------------------------------------------------------- /Projects/Netflix Homepage Clone/Assets/ms-icon-144x144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham7668/WebDev/HEAD/Projects/Netflix Homepage Clone/Assets/ms-icon-144x144.png -------------------------------------------------------------------------------- /Projects/Netflix Homepage Clone/Assets/ms-icon-150x150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham7668/WebDev/HEAD/Projects/Netflix Homepage Clone/Assets/ms-icon-150x150.png -------------------------------------------------------------------------------- /Projects/Netflix Homepage Clone/Assets/ms-icon-310x310.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham7668/WebDev/HEAD/Projects/Netflix Homepage Clone/Assets/ms-icon-310x310.png -------------------------------------------------------------------------------- /Projects/Netflix Homepage Clone/Assets/ms-icon-70x70.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham7668/WebDev/HEAD/Projects/Netflix Homepage Clone/Assets/ms-icon-70x70.png -------------------------------------------------------------------------------- /Projects/Netflix Homepage Clone/Images/AAAABVxdX2WnFSp49eXb1do0euaj-F8upNImjofE77XStKhf5kUHG94DPlTiGYqPeYNtiox-82NWEK0Ls3CnLe3WWClGdiJP.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham7668/WebDev/HEAD/Projects/Netflix Homepage Clone/Images/AAAABVxdX2WnFSp49eXb1do0euaj-F8upNImjofE77XStKhf5kUHG94DPlTiGYqPeYNtiox-82NWEK0Ls3CnLe3WWClGdiJP.png -------------------------------------------------------------------------------- /Projects/Netflix Homepage Clone/Images/IN-en-20210524-popsignuptwoweeks-perspective_alpha_website_large.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham7668/WebDev/HEAD/Projects/Netflix Homepage Clone/Images/IN-en-20210524-popsignuptwoweeks-perspective_alpha_website_large.jpg -------------------------------------------------------------------------------- /Projects/Netflix Homepage Clone/Images/device-pile-in.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham7668/WebDev/HEAD/Projects/Netflix Homepage Clone/Images/device-pile-in.png -------------------------------------------------------------------------------- /Projects/Netflix Homepage Clone/Images/download-icon.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham7668/WebDev/HEAD/Projects/Netflix Homepage Clone/Images/download-icon.gif -------------------------------------------------------------------------------- /Projects/Netflix Homepage Clone/Images/netflix-logo-png-2562.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham7668/WebDev/HEAD/Projects/Netflix Homepage Clone/Images/netflix-logo-png-2562.png -------------------------------------------------------------------------------- /Projects/Netflix Homepage Clone/Images/netflix_logo_icon_170919.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham7668/WebDev/HEAD/Projects/Netflix Homepage Clone/Images/netflix_logo_icon_170919.ico -------------------------------------------------------------------------------- /Projects/Netflix Homepage Clone/Images/tv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham7668/WebDev/HEAD/Projects/Netflix Homepage Clone/Images/tv.png -------------------------------------------------------------------------------- /Projects/Netflix Homepage Clone/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham7668/WebDev/HEAD/Projects/Netflix Homepage Clone/index.html -------------------------------------------------------------------------------- /Projects/Netflix Homepage Clone/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham7668/WebDev/HEAD/Projects/Netflix Homepage Clone/style.css -------------------------------------------------------------------------------- /Projects/Note Maker/Read.md: -------------------------------------------------------------------------------- 1 | https://yatndeep.github.io/Note_Maker/ 2 | -------------------------------------------------------------------------------- /Projects/Note Maker/Screenshot (14).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham7668/WebDev/HEAD/Projects/Note Maker/Screenshot (14).png -------------------------------------------------------------------------------- /Projects/Note Maker/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham7668/WebDev/HEAD/Projects/Note Maker/index.html -------------------------------------------------------------------------------- /Projects/Note Maker/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham7668/WebDev/HEAD/Projects/Note Maker/index.js -------------------------------------------------------------------------------- /Projects/Note Maker/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham7668/WebDev/HEAD/Projects/Note Maker/style.css -------------------------------------------------------------------------------- /Projects/Parallax Website/css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham7668/WebDev/HEAD/Projects/Parallax Website/css/main.css -------------------------------------------------------------------------------- /Projects/Parallax Website/img/img1.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham7668/WebDev/HEAD/Projects/Parallax Website/img/img1.jpeg -------------------------------------------------------------------------------- /Projects/Parallax Website/img/img2.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham7668/WebDev/HEAD/Projects/Parallax Website/img/img2.jpeg -------------------------------------------------------------------------------- /Projects/Parallax Website/img/img3-2.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham7668/WebDev/HEAD/Projects/Parallax Website/img/img3-2.jpeg -------------------------------------------------------------------------------- /Projects/Parallax Website/img/img3-3.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham7668/WebDev/HEAD/Projects/Parallax Website/img/img3-3.jpeg -------------------------------------------------------------------------------- /Projects/Parallax Website/img/img3.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham7668/WebDev/HEAD/Projects/Parallax Website/img/img3.jpeg -------------------------------------------------------------------------------- /Projects/Parallax Website/img/logo1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham7668/WebDev/HEAD/Projects/Parallax Website/img/logo1.png -------------------------------------------------------------------------------- /Projects/Parallax Website/img/logo2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham7668/WebDev/HEAD/Projects/Parallax Website/img/logo2.png -------------------------------------------------------------------------------- /Projects/Parallax Website/img/logo3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham7668/WebDev/HEAD/Projects/Parallax Website/img/logo3.png -------------------------------------------------------------------------------- /Projects/Parallax Website/img/logo4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham7668/WebDev/HEAD/Projects/Parallax Website/img/logo4.png -------------------------------------------------------------------------------- /Projects/Parallax Website/img/name.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham7668/WebDev/HEAD/Projects/Parallax Website/img/name.png -------------------------------------------------------------------------------- /Projects/Parallax Website/img/name2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham7668/WebDev/HEAD/Projects/Parallax Website/img/name2.png -------------------------------------------------------------------------------- /Projects/Parallax Website/img/name3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham7668/WebDev/HEAD/Projects/Parallax Website/img/name3.png -------------------------------------------------------------------------------- /Projects/Parallax Website/img/name4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham7668/WebDev/HEAD/Projects/Parallax Website/img/name4.png -------------------------------------------------------------------------------- /Projects/Parallax Website/img/quote1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham7668/WebDev/HEAD/Projects/Parallax Website/img/quote1.png -------------------------------------------------------------------------------- /Projects/Parallax Website/img/quote2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham7668/WebDev/HEAD/Projects/Parallax Website/img/quote2.png -------------------------------------------------------------------------------- /Projects/Parallax Website/img/quote3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham7668/WebDev/HEAD/Projects/Parallax Website/img/quote3.png -------------------------------------------------------------------------------- /Projects/Parallax Website/img/quote4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham7668/WebDev/HEAD/Projects/Parallax Website/img/quote4.png -------------------------------------------------------------------------------- /Projects/Parallax Website/img/quote5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham7668/WebDev/HEAD/Projects/Parallax Website/img/quote5.png -------------------------------------------------------------------------------- /Projects/Parallax Website/img/quote6-a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham7668/WebDev/HEAD/Projects/Parallax Website/img/quote6-a.png -------------------------------------------------------------------------------- /Projects/Parallax Website/img/quote6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham7668/WebDev/HEAD/Projects/Parallax Website/img/quote6.png -------------------------------------------------------------------------------- /Projects/Parallax Website/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham7668/WebDev/HEAD/Projects/Parallax Website/index.html -------------------------------------------------------------------------------- /Projects/Random-rectangle-generator-onMousecClick/attachBindings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham7668/WebDev/HEAD/Projects/Random-rectangle-generator-onMousecClick/attachBindings.js -------------------------------------------------------------------------------- /Projects/Random-rectangle-generator-onMousecClick/handlers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham7668/WebDev/HEAD/Projects/Random-rectangle-generator-onMousecClick/handlers.js -------------------------------------------------------------------------------- /Projects/Random-rectangle-generator-onMousecClick/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham7668/WebDev/HEAD/Projects/Random-rectangle-generator-onMousecClick/index.html -------------------------------------------------------------------------------- /Projects/Responsive Landing Page/assets/shoe.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham7668/WebDev/HEAD/Projects/Responsive Landing Page/assets/shoe.jpeg -------------------------------------------------------------------------------- /Projects/Responsive Landing Page/assets/shoe2.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham7668/WebDev/HEAD/Projects/Responsive Landing Page/assets/shoe2.jpeg -------------------------------------------------------------------------------- /Projects/Responsive Landing Page/assets/shoe3.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham7668/WebDev/HEAD/Projects/Responsive Landing Page/assets/shoe3.jpeg -------------------------------------------------------------------------------- /Projects/Responsive Landing Page/assets/shoe4.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham7668/WebDev/HEAD/Projects/Responsive Landing Page/assets/shoe4.jpeg -------------------------------------------------------------------------------- /Projects/Responsive Landing Page/css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham7668/WebDev/HEAD/Projects/Responsive Landing Page/css/main.css -------------------------------------------------------------------------------- /Projects/Responsive Landing Page/css/main.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham7668/WebDev/HEAD/Projects/Responsive Landing Page/css/main.css.map -------------------------------------------------------------------------------- /Projects/Responsive Landing Page/css/main.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham7668/WebDev/HEAD/Projects/Responsive Landing Page/css/main.scss -------------------------------------------------------------------------------- /Projects/Responsive Landing Page/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham7668/WebDev/HEAD/Projects/Responsive Landing Page/index.html -------------------------------------------------------------------------------- /Projects/SKDRCLASSES/1.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham7668/WebDev/HEAD/Projects/SKDRCLASSES/1.jpeg -------------------------------------------------------------------------------- /Projects/SKDRCLASSES/2.jfif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham7668/WebDev/HEAD/Projects/SKDRCLASSES/2.jfif -------------------------------------------------------------------------------- /Projects/SKDRCLASSES/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham7668/WebDev/HEAD/Projects/SKDRCLASSES/css/style.css -------------------------------------------------------------------------------- /Projects/SKDRCLASSES/gallery/10.jfif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham7668/WebDev/HEAD/Projects/SKDRCLASSES/gallery/10.jfif -------------------------------------------------------------------------------- /Projects/SKDRCLASSES/gallery/11.jfif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham7668/WebDev/HEAD/Projects/SKDRCLASSES/gallery/11.jfif -------------------------------------------------------------------------------- /Projects/SKDRCLASSES/gallery/12.jfif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham7668/WebDev/HEAD/Projects/SKDRCLASSES/gallery/12.jfif -------------------------------------------------------------------------------- /Projects/SKDRCLASSES/gallery/13.jfif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham7668/WebDev/HEAD/Projects/SKDRCLASSES/gallery/13.jfif -------------------------------------------------------------------------------- /Projects/SKDRCLASSES/gallery/3.jfif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham7668/WebDev/HEAD/Projects/SKDRCLASSES/gallery/3.jfif -------------------------------------------------------------------------------- /Projects/SKDRCLASSES/gallery/4.jfif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham7668/WebDev/HEAD/Projects/SKDRCLASSES/gallery/4.jfif -------------------------------------------------------------------------------- /Projects/SKDRCLASSES/gallery/5.jfif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham7668/WebDev/HEAD/Projects/SKDRCLASSES/gallery/5.jfif -------------------------------------------------------------------------------- /Projects/SKDRCLASSES/gallery/6.jfif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham7668/WebDev/HEAD/Projects/SKDRCLASSES/gallery/6.jfif -------------------------------------------------------------------------------- /Projects/SKDRCLASSES/gallery/7.jfif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham7668/WebDev/HEAD/Projects/SKDRCLASSES/gallery/7.jfif -------------------------------------------------------------------------------- /Projects/SKDRCLASSES/gallery/8.jfif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham7668/WebDev/HEAD/Projects/SKDRCLASSES/gallery/8.jfif -------------------------------------------------------------------------------- /Projects/SKDRCLASSES/gallery/9.jfif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham7668/WebDev/HEAD/Projects/SKDRCLASSES/gallery/9.jfif -------------------------------------------------------------------------------- /Projects/SKDRCLASSES/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham7668/WebDev/HEAD/Projects/SKDRCLASSES/index.html -------------------------------------------------------------------------------- /Projects/STICKY NOTES/CRUD.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham7668/WebDev/HEAD/Projects/STICKY NOTES/CRUD.html -------------------------------------------------------------------------------- /Projects/TheSnakeGame/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham7668/WebDev/HEAD/Projects/TheSnakeGame/README.md -------------------------------------------------------------------------------- /Projects/TheSnakeGame/Resources.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham7668/WebDev/HEAD/Projects/TheSnakeGame/Resources.txt -------------------------------------------------------------------------------- /Projects/TheSnakeGame/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham7668/WebDev/HEAD/Projects/TheSnakeGame/app.json -------------------------------------------------------------------------------- /Projects/TheSnakeGame/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham7668/WebDev/HEAD/Projects/TheSnakeGame/css/style.css -------------------------------------------------------------------------------- /Projects/TheSnakeGame/eat.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham7668/WebDev/HEAD/Projects/TheSnakeGame/eat.mp3 -------------------------------------------------------------------------------- /Projects/TheSnakeGame/home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham7668/WebDev/HEAD/Projects/TheSnakeGame/home.html -------------------------------------------------------------------------------- /Projects/TheSnakeGame/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham7668/WebDev/HEAD/Projects/TheSnakeGame/index.php -------------------------------------------------------------------------------- /Projects/TheSnakeGame/js/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham7668/WebDev/HEAD/Projects/TheSnakeGame/js/index.js -------------------------------------------------------------------------------- /Projects/TheSnakeGame/keepMoving.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham7668/WebDev/HEAD/Projects/TheSnakeGame/keepMoving.mp3 -------------------------------------------------------------------------------- /Projects/TheSnakeGame/music.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham7668/WebDev/HEAD/Projects/TheSnakeGame/music.mp3 -------------------------------------------------------------------------------- /Projects/TheSnakeGame/over.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham7668/WebDev/HEAD/Projects/TheSnakeGame/over.mp3 -------------------------------------------------------------------------------- /Projects/TheSnakeGame/snake.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham7668/WebDev/HEAD/Projects/TheSnakeGame/snake.jpg -------------------------------------------------------------------------------- /Projects/TicTacToe/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham7668/WebDev/HEAD/Projects/TicTacToe/README.md -------------------------------------------------------------------------------- /Projects/TicTacToe/app.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /Projects/TicTacToe/excited.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham7668/WebDev/HEAD/Projects/TicTacToe/excited.gif -------------------------------------------------------------------------------- /Projects/TicTacToe/gameover.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham7668/WebDev/HEAD/Projects/TicTacToe/gameover.mp3 -------------------------------------------------------------------------------- /Projects/TicTacToe/home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham7668/WebDev/HEAD/Projects/TicTacToe/home.html -------------------------------------------------------------------------------- /Projects/TicTacToe/index.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Projects/TicTacToe/music.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham7668/WebDev/HEAD/Projects/TicTacToe/music.mp3 -------------------------------------------------------------------------------- /Projects/TicTacToe/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham7668/WebDev/HEAD/Projects/TicTacToe/script.js -------------------------------------------------------------------------------- /Projects/TicTacToe/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham7668/WebDev/HEAD/Projects/TicTacToe/style.css -------------------------------------------------------------------------------- /Projects/TicTacToe/ting.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham7668/WebDev/HEAD/Projects/TicTacToe/ting.mp3 -------------------------------------------------------------------------------- /Projects/tailwind_website/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham7668/WebDev/HEAD/Projects/tailwind_website/1.jpg -------------------------------------------------------------------------------- /Projects/tailwind_website/4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham7668/WebDev/HEAD/Projects/tailwind_website/4.jpg -------------------------------------------------------------------------------- /Projects/tailwind_website/5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham7668/WebDev/HEAD/Projects/tailwind_website/5.jpg -------------------------------------------------------------------------------- /Projects/tailwind_website/6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham7668/WebDev/HEAD/Projects/tailwind_website/6.jpg -------------------------------------------------------------------------------- /Projects/tailwind_website/Bowker, Gordon.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham7668/WebDev/HEAD/Projects/tailwind_website/Bowker, Gordon.jpg -------------------------------------------------------------------------------- /Projects/tailwind_website/Safeimagekit-resized-imgpng.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham7668/WebDev/HEAD/Projects/tailwind_website/Safeimagekit-resized-imgpng.png -------------------------------------------------------------------------------- /Projects/tailwind_website/WhatsApp Image 2022-03-09 at 10.36.53 PM.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham7668/WebDev/HEAD/Projects/tailwind_website/WhatsApp Image 2022-03-09 at 10.36.53 PM.jpeg -------------------------------------------------------------------------------- /Projects/tailwind_website/download.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham7668/WebDev/HEAD/Projects/tailwind_website/download.jpeg -------------------------------------------------------------------------------- /Projects/tailwind_website/feat_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham7668/WebDev/HEAD/Projects/tailwind_website/feat_3.png -------------------------------------------------------------------------------- /Projects/tailwind_website/gerald-baldwin.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham7668/WebDev/HEAD/Projects/tailwind_website/gerald-baldwin.jpg -------------------------------------------------------------------------------- /Projects/tailwind_website/girl.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham7668/WebDev/HEAD/Projects/tailwind_website/girl.jpeg -------------------------------------------------------------------------------- /Projects/tailwind_website/ice.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham7668/WebDev/HEAD/Projects/tailwind_website/ice.jpg -------------------------------------------------------------------------------- /Projects/tailwind_website/iced-caramel-macchiato.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham7668/WebDev/HEAD/Projects/tailwind_website/iced-caramel-macchiato.jpg -------------------------------------------------------------------------------- /Projects/tailwind_website/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham7668/WebDev/HEAD/Projects/tailwind_website/index.html -------------------------------------------------------------------------------- /Projects/tailwind_website/logo-instagram-png-13551.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham7668/WebDev/HEAD/Projects/tailwind_website/logo-instagram-png-13551.png -------------------------------------------------------------------------------- /Projects/tailwind_website/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham7668/WebDev/HEAD/Projects/tailwind_website/logo.png -------------------------------------------------------------------------------- /Projects/tailwind_website/meta.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham7668/WebDev/HEAD/Projects/tailwind_website/meta.png -------------------------------------------------------------------------------- /Projects/tailwind_website/mocha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham7668/WebDev/HEAD/Projects/tailwind_website/mocha.png -------------------------------------------------------------------------------- /Projects/tailwind_website/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham7668/WebDev/HEAD/Projects/tailwind_website/package-lock.json -------------------------------------------------------------------------------- /Projects/tailwind_website/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham7668/WebDev/HEAD/Projects/tailwind_website/package.json -------------------------------------------------------------------------------- /Projects/tailwind_website/postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham7668/WebDev/HEAD/Projects/tailwind_website/postcss.config.js -------------------------------------------------------------------------------- /Projects/tailwind_website/pperment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham7668/WebDev/HEAD/Projects/tailwind_website/pperment.png -------------------------------------------------------------------------------- /Projects/tailwind_website/starbucks-coffee-jubilee-hills-1613556641.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham7668/WebDev/HEAD/Projects/tailwind_website/starbucks-coffee-jubilee-hills-1613556641.jpg -------------------------------------------------------------------------------- /Projects/tailwind_website/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham7668/WebDev/HEAD/Projects/tailwind_website/styles.css -------------------------------------------------------------------------------- /Projects/tailwind_website/tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham7668/WebDev/HEAD/Projects/tailwind_website/tailwind.config.js -------------------------------------------------------------------------------- /Projects/tailwind_website/twitter-icon-83.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham7668/WebDev/HEAD/Projects/tailwind_website/twitter-icon-83.png -------------------------------------------------------------------------------- /Projects/tailwind_website/zev.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham7668/WebDev/HEAD/Projects/tailwind_website/zev.webp -------------------------------------------------------------------------------- /Projects/tribute page/images/Dr._Bhimrao_Ambedkar.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham7668/WebDev/HEAD/Projects/tribute page/images/Dr._Bhimrao_Ambedkar.jpg -------------------------------------------------------------------------------- /Projects/tribute page/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham7668/WebDev/HEAD/Projects/tribute page/index.html -------------------------------------------------------------------------------- /Projects/tribute page/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham7668/WebDev/HEAD/Projects/tribute page/styles.css -------------------------------------------------------------------------------- /Projects/typefast_touch_typing_site/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham7668/WebDev/HEAD/Projects/typefast_touch_typing_site/index.html -------------------------------------------------------------------------------- /Projects/typefast_touch_typing_site/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham7668/WebDev/HEAD/Projects/typefast_touch_typing_site/index.js -------------------------------------------------------------------------------- /Projects/typefast_touch_typing_site/style1.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham7668/WebDev/HEAD/Projects/typefast_touch_typing_site/style1.css -------------------------------------------------------------------------------- /Projects/whiteboard/.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "liveServer.settings.port": 5501 3 | } -------------------------------------------------------------------------------- /Projects/whiteboard/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham7668/WebDev/HEAD/Projects/whiteboard/Readme.md -------------------------------------------------------------------------------- /Projects/whiteboard/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham7668/WebDev/HEAD/Projects/whiteboard/index.html -------------------------------------------------------------------------------- /Projects/whiteboard/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham7668/WebDev/HEAD/Projects/whiteboard/script.js -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham7668/WebDev/HEAD/README.md --------------------------------------------------------------------------------