├── 2048 GAME ├── 2048_cover_end.png ├── 2048_cover_start.png ├── README.md ├── app.js ├── index.html └── style.css ├── Air Pollution Tracker ├── aqi.html ├── assets │ └── images │ │ ├── 1_LHj_Zj0clfZIP1ltxOEj9Q.png │ │ ├── air-quality1.gif │ │ ├── air-quality2.gif │ │ ├── air-quality3.gif │ │ ├── aqi-1.png │ │ ├── bg.png │ │ ├── homepage.png │ │ └── plant.png ├── causes.jpg ├── close.png ├── config.js ├── favicon.png ├── history.css ├── history.html ├── history_config.js ├── history_server.js ├── img.webp ├── img2.png ├── img3.jpg ├── landing.html ├── left.png ├── menu.png ├── readme.md ├── right.png ├── server.js ├── step.jpg ├── style.css └── styleaqi.css ├── BMI Calculator ├── index.html ├── readme.md ├── script.js └── style.css ├── Budget Buddy ├── 1.png ├── 2.png ├── 3.png ├── 4.png ├── Readme.md ├── money.css ├── money.html └── money.js ├── CoffeeBean ├── README.md ├── index.html └── src │ ├── imgs │ ├── LGM.png │ ├── abt1.jpg │ ├── cof1.jpg │ ├── cof2.jpg │ ├── cof3.jpg │ ├── cof4.jpg │ ├── cof5.jpg │ ├── img1.png │ ├── img2.png │ ├── img3.png │ └── preview.jpeg │ ├── index.js │ ├── styles.css │ ├── swiper-bundle.min.css │ ├── swiper-bundle.min.js │ └── video │ └── coffee.mp4 ├── College Blog Site ├── 20230205_072511_new.jpg ├── Ansh.jpg ├── DPU.png ├── DPUlogo.png ├── Payment.jpeg ├── README.md ├── about.css ├── aboutus.html ├── anshu.jpeg ├── blog.css ├── blog.html ├── contact.css ├── contact.html ├── cse1 ├── dhruvimg.jpeg ├── dit ├── dpulogo ├── image 1.jpg.jpg ├── image 2.jpg.jpg ├── image 3.jpg.jpg ├── image 4.jpg.jpg ├── image5.jpg ├── image6.jpg ├── images │ ├── quote-icon.png │ ├── team-member1.png │ ├── team-member2.png │ ├── team-member3.png │ └── team-member4.png ├── img1.jpg ├── img2.jpg ├── img3.jpeg ├── index.css ├── index.html ├── index.js ├── manik.jpg ├── manikk.jpeg ├── mobile.css ├── ms.jpg ├── nikk.jpeg ├── nikk1.jpg ├── search.html ├── sharma.jpg ├── shivali.jpg ├── studytips.css ├── studytips.html ├── style.css ├── utils.css └── webdev ├── Contact App ├── .gitignore ├── README.md ├── contact-app │ ├── README.md │ ├── package-lock.json │ ├── package.json │ ├── public │ │ ├── favicon.ico │ │ └── index.html │ └── src │ │ ├── App.css │ │ ├── App.js │ │ ├── api │ │ └── contacts.js │ │ ├── assets │ │ ├── avatar.png │ │ ├── ss10.png │ │ ├── ss11.png │ │ ├── ss6.png │ │ ├── ss7.png │ │ ├── ss8.png │ │ ├── ss9.png │ │ └── user.png │ │ ├── components │ │ ├── AddContact.js │ │ ├── ContactCard.js │ │ ├── ContactDetails.js │ │ ├── ContactList.js │ │ ├── EditContact.js │ │ └── Header.js │ │ └── index.js └── server-api │ ├── db.json │ ├── package-lock.json │ └── package.json ├── CountDown Timer ├── README.md ├── countdownn.png ├── index.html ├── index.js └── style.css ├── Counter Application ├── README.md ├── app.js ├── counter.png ├── index.html └── main.css ├── Cryptocurrency Price Tracker ├── .gitignore ├── README.md ├── package-lock.json ├── package.json ├── public │ ├── favicon.ico │ ├── index.html │ ├── manifest.json │ └── robots.txt ├── src │ ├── App.js │ ├── components │ │ ├── CoinInfoContainer.jsx │ │ └── Header.jsx │ ├── helper │ │ └── debounce.js │ ├── index.css │ ├── index.js │ ├── pages │ │ ├── Home.jsx │ │ ├── ItemPage.jsx │ │ └── image.png │ └── store │ │ ├── homeStore.js │ │ └── itemStore.js └── tailwind.config.js ├── Currency Converter 2 ├── index.html ├── readme.md ├── sample.png ├── script.js └── style.css ├── Currency Converter ├── Front.PNG ├── index.html ├── readme.md ├── script.js └── style.css ├── Dice Challenge ├── README.md ├── dicee.html ├── images │ ├── dice1.png │ ├── dice2.png │ ├── dice3.png │ ├── dice4.png │ ├── dice5.png │ └── dice6.png ├── index.js └── styles.css ├── Drink Water ├── README.md ├── index.html ├── script.js └── style.css ├── EMI Calculator ├── README.md ├── app.js ├── budget.png ├── index.html └── style.css ├── Fitness Tracker ├── README.md ├── assets │ ├── Full_with_data.png │ └── running.png ├── index.html ├── script.js └── style.css ├── Flappy Bird Game ├── Readme.md ├── bottompipe.png ├── flappybird.png ├── flappybirdbg.png ├── image.png ├── index.html ├── script.js ├── style.css └── toppipe.png ├── Gradient Background ├── index.html ├── readme.md ├── script.js └── style.css ├── Guess The Number ├── back.jpg ├── index.html ├── readme.md ├── script.js └── style.css ├── Image Editor ├── README.md ├── app.js ├── index.html ├── logo1.png ├── logo3.jpeg └── style.css ├── LICENSE ├── Landing Page ├── Neeraj Meka.png ├── README.md ├── acousticguitar.jpg ├── acousticset.png ├── delivery.png ├── electricguitar.jpg ├── guitar.png ├── index.html ├── package.json ├── quality.png ├── sandbox.config.json └── style.css ├── Link Shortner ├── .gitignore ├── README.md ├── bun.lockb ├── components.json ├── next.config.mjs ├── package.json ├── postcss.config.cjs ├── prettier.config.mjs ├── prisma │ └── schema.prisma ├── public │ └── favicon.ico ├── src │ ├── components │ │ └── ui │ │ │ ├── button.tsx │ │ │ └── input.tsx │ ├── env.mjs │ ├── lib │ │ └── utils.ts │ ├── middleware.ts │ ├── pages │ │ ├── 404.tsx │ │ ├── _app.tsx │ │ ├── api │ │ │ ├── [slug].ts │ │ │ └── trpc │ │ │ │ └── [trpc].ts │ │ └── index.tsx │ ├── server │ │ ├── api │ │ │ ├── root.ts │ │ │ ├── routers │ │ │ │ └── example.ts │ │ │ └── trpc.ts │ │ └── db.ts │ ├── styles │ │ └── globals.css │ └── utils │ │ └── api.ts ├── tailwind.config.js ├── tailwind.config.ts └── tsconfig.json ├── Login Page ├── README.md ├── assets │ ├── bg-login1.jpg │ ├── bg-login2.jpg │ ├── bg-login3.jpg │ ├── favicon.png │ └── preview.png ├── index.html ├── reset.css └── style.css ├── Love Calculator ├── README.md ├── heart.png ├── index.html ├── script.js └── style.css ├── Math Calculator ├── index.html ├── main.js ├── readme.md └── styles.css ├── Memory Game ├── README.md ├── images │ ├── bee.png │ ├── butterfly.png │ ├── cat.png │ ├── chameleon.png │ ├── crab.png │ ├── elephant.png │ ├── fox.png │ ├── frog.png │ ├── hen.png │ ├── horse.png │ ├── jellyfish.png │ ├── koala.png │ ├── monkey.png │ ├── mouse.png │ ├── owl.png │ ├── snail.png │ ├── snake.png │ ├── toucan.png │ ├── turtle.png │ └── whale.png ├── index.html ├── script.js └── style.css ├── Music Player ├── README.md ├── asset │ ├── Dhee ft. Arivu - Enjoy Enjaami (Prod. Santhosh Narayanan)_eYq7WapuDLU.mp3 │ ├── Imagine Dragons - Believer (Lyrics)_W0DM5lcj6mw.mp3 │ ├── Manike Mage Hithe මැණිකේ මගේ හිතේ - Official Cover - Yohani & Satheeshan_PgCliOxl41o.mp3 │ └── music.png ├── index.html ├── script.js └── style.css ├── News App ├── .gitignore ├── README.md ├── package-lock.json ├── package.json ├── public │ ├── favicon.ico │ ├── index.html │ ├── logo192.png │ ├── logo512.png │ ├── manifest.json │ └── robots.txt └── src │ ├── App.css │ ├── App.js │ ├── App.test.js │ ├── components │ ├── NavBar.js │ ├── News.js │ ├── NewsItem.js │ ├── NoPhotoAvailable.png │ ├── Spinner.js │ └── loading3.gif │ ├── index.css │ ├── index.js │ ├── logo.svg │ ├── reportWebVitals.js │ └── setupTests.js ├── Password Generator ├── Output.png ├── README.md ├── images │ ├── bg.jpg │ └── logo.png ├── index.html ├── script.js └── style.css ├── Personal Diary ├── README.md ├── Screenshot 2023-10-07 at 6.24.52 PM.png ├── index.html ├── script.js └── style.css ├── Personal Website ├── home.png ├── images │ ├── JavaScript_logo.png │ ├── css_logo.png │ ├── html_logo.png │ ├── img4.png │ ├── instagram.png │ ├── linkedin.png │ ├── personal_portfolio.png │ ├── python_logo.png │ ├── social.png │ └── x.png ├── index.html ├── readme.md └── style.css ├── Plan Template ├── Readme.md ├── index.html ├── premium.png └── style.css ├── Qr Generator ├── README.md ├── index.css ├── index.html ├── qr_picture.png └── scripts.js ├── Quote Generator ├── README.md ├── index.html ├── script.js └── style.css ├── README.md ├── Random Choice Picker ├── README.md ├── images │ ├── random-choice-picker-01.jpg │ ├── random-choice-picker-02.jpg │ ├── random-choice-picker-03.jpg │ └── random-choice-picker-04.jpg ├── index.html ├── script.js └── style.css ├── Restaurant Menu ├── Readme.md ├── food1.jpg ├── food10.jpg ├── food11.jpg ├── food12.jpg ├── food2.jpg ├── food3.jpg ├── food4.jpg ├── food5.jpg ├── food6.jpg ├── food7.jpg ├── food8.jpg ├── food9.jpg ├── logo.png ├── menu.css ├── menu.html └── menu.js ├── Resume Generator ├── .gitignore ├── README.md ├── eslint.config.js ├── image.png ├── image1.png ├── index.html ├── package-lock.json ├── package.json ├── postcss.config.js ├── src │ ├── App.tsx │ ├── components │ │ ├── Form │ │ │ ├── EducationForm.tsx │ │ │ ├── ExperienceForm.tsx │ │ │ ├── Input.tsx │ │ │ ├── ListForm.tsx │ │ │ ├── PersonalInfoForm.tsx │ │ │ ├── ProjectsForm.tsx │ │ │ ├── Section.tsx │ │ │ └── SkillsForm.tsx │ │ └── Templates │ │ │ └── MinimalTemplate.tsx │ ├── index.css │ ├── main.tsx │ ├── types │ │ └── resume.ts │ └── vite-env.d.ts ├── tailwind.config.js ├── tsconfig.app.json ├── tsconfig.json ├── tsconfig.node.json └── vite.config.ts ├── Rock Paper Scissors ├── README.md ├── app.js ├── index.html ├── ss.png └── style.css ├── Sketchpad App ├── Downloaded_image.png ├── Interface.png ├── README.md ├── grid.svg ├── index.html ├── script.js └── style.css ├── Stop Watch ├── README.md ├── Script.js ├── image.png ├── images │ ├── reset.png │ ├── start.png │ └── stop.png ├── index.html └── style.css ├── Temperature converter ├── index.html ├── index.js ├── readme.md └── style.css ├── Text Generator ├── index.html ├── index.js ├── readme.md ├── ss.png └── style.css ├── Tic Tac Toe ├── .gitignore ├── Readme.md ├── excited.gif ├── gameover.mp3 ├── index.html ├── music.mp3 ├── script.js ├── style.css └── ting.mp3 ├── ToDo List ├── Readme.md ├── Screenshot from 2023-10-04 22-48-23.png ├── index.html ├── script.js └── styles.css ├── Translator App ├── README.md ├── index.html ├── script.js └── style.css ├── Typing Speed Test ├── README.md ├── app.js ├── index.html ├── ss.png └── style.css ├── Weather App ├── .gitignore ├── README.md ├── package-lock.json ├── package.json ├── public │ ├── favicon.ico │ ├── index.html │ ├── logo192.png │ ├── logo512.png │ ├── manifest.json │ └── robots.txt ├── src │ ├── App.css │ ├── App.js │ ├── App.test.js │ ├── LoadingComponent.js │ ├── index.css │ ├── index.js │ ├── reportWebVitals.js │ └── setupTests.js └── tailwind.config.js ├── Weather Teller ├── README.md ├── images │ ├── Clear.png │ ├── Clouds.png │ ├── Drizzle.png │ ├── Haze.png │ ├── Humidity.png │ ├── Mist.png │ ├── Rain.png │ ├── Snow.png │ ├── Wind.png │ ├── search.png │ └── weather.png ├── index.html ├── script.js └── style.css ├── Web Clock ├── Analog Clock │ ├── clock.png │ ├── index.html │ ├── script.js │ └── style.css ├── Digital Clock │ ├── index.html │ ├── script.js │ └── style.css ├── Screenshots │ ├── demo.gif │ ├── ss1.png │ ├── ss2.png │ └── ss3.png ├── img1.png ├── img2.png ├── index.html ├── readme.md └── style.css ├── Whack-A-Mole ├── README.md ├── dirt.png ├── index.html ├── mole.png ├── script.js └── style.css ├── Word Dictionary ├── README.md ├── index.html ├── script.js └── style.css ├── Word Scramble ├── README.md ├── index.html ├── js │ ├── script.js │ └── words.js └── style.css └── guestbook ├── Readme.md ├── index.html ├── script.js └── style.css /2048 GAME/2048_cover_end.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prodigy-InfoTech/Web-Development-Projects/1415481ea4170382584ee2b363444534825b436f/2048 GAME/2048_cover_end.png -------------------------------------------------------------------------------- /2048 GAME/2048_cover_start.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prodigy-InfoTech/Web-Development-Projects/1415481ea4170382584ee2b363444534825b436f/2048 GAME/2048_cover_start.png -------------------------------------------------------------------------------- /2048 GAME/README.md: -------------------------------------------------------------------------------- 1 | # 2048 GAME 2 | 3 | - click Here to see live webpage [https://git0chetan.github.io/2048_GAME/] 4 | - my github profile: [https://github.com/Git0Chetan] 5 | 6 | # Need of 2048 Game 7 | Concepts of js got better while developing the project. 8 | While playing these game , It boosts both pleasure and perseverance, while decreasing stress. 9 | 10 | # Instruction 11 | 2048 is played on a 4×4 grid, with numbered tiles that slide smoothly when a player moves them using the four arrow keys. Each time you slide, a new tile will randomly appear in an empty spot on the board. Tiles slide as far as possible in the chosen direction until they are stopped by either another tile or the edge of the grid. If two tiles of the same number collide while moving, they will merge into a tile with the total value of the two tiles that collided. The resulting tile cannot merge with another tile again in the same move. 12 | If you score 2048 or more You will win the Game. 13 | 14 | # Tech Used 15 | - **HTML** - To structure the web page and its content. 16 | - **CSS**- To style and layout web page 17 | - **JS** - To make web pages interactive and to create dynamically updating content, use animations, pop-up menus, clickable buttons, etc 18 | 19 | # How to Run The game on personal PC 20 | - you can go to the live link provided above or 21 | - clone the project and run the index.html file. 22 | 23 | # Start 24 |  25 | 26 | # winner 27 |  28 | 29 | -------------------------------------------------------------------------------- /2048 GAME/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 | 5 | 6 |Created by Chetan Patil
14 |