├── Weather App ├── key.js ├── index.html ├── script.js └── style.css ├── clock ├── README.md ├── index.html └── sytle.css ├── Alarm Clock ├── images.jpg ├── ringtone.mp3 ├── index.html ├── style.css └── script.js ├── Profile Card ├── profile.png ├── script.js ├── index.html └── style.css ├── 30dayofJavascriptProject ├── Images │ ├── Meme.png │ ├── Captcha.png │ ├── QuizApp.png │ ├── Quote.png │ ├── Recipe.png │ ├── Scratch.png │ ├── clock.png │ ├── Calender.png │ ├── LoginForm.png │ ├── MathGame.png │ ├── Tictoetak.png │ ├── TodoList.png │ ├── AlarmClock.png │ ├── Calculator.png │ ├── ColorPallat.png │ ├── CountryGuide.png │ ├── Dictionary.png │ ├── FilterImage.png │ ├── ImageEditor.png │ ├── ImageFilter.png │ ├── ParrotColor.png │ ├── ProductZoom.png │ ├── ProfileCard.png │ ├── RandomUser.png │ ├── TypingSpeed.png │ ├── FaviconFetcher.png │ ├── SimpleInterest.png │ └── GradientGenerator.png ├── script.js └── style.css ├── Favicon Fetcher generator ├── index.js ├── index.html └── style.css ├── Random quote genertor ├── script.js ├── index.html └── style.css ├── Product Image Zoom ├── index.html ├── style.css └── script.js ├── .github └── ISSUE_TEMPLATE │ ├── feature_request.md │ └── bug_report.md ├── Scratch Card ├── index.html ├── style.css └── script.js ├── Recipe App ├── index.html ├── style.css └── index.js ├── Random Mems App ├── index.html ├── index.js └── index.css ├── country Guide App ├── index.html ├── style.css └── index.js ├── Color Palette Generator ├── app.js ├── style.css └── index.html ├── Todo List ├── index.html ├── index.js └── index.css ├── Simple Interest App ├── script.js ├── index.html └── style.css ├── Flag Game ├── index.html ├── style.css └── script.js ├── Dictionary ├── index.html ├── index.js └── style.css ├── Memory Game ├── index.html ├── style.css └── script.js ├── Ramdom User cards ├── index.js ├── index.html └── index.css ├── Calendar ├── index.html ├── style.css └── index.js ├── Math Game ├── index.html ├── index.css └── index.js ├── Filter Image ├── index.html └── index.js ├── LICENSE ├── Captcha in js ├── index.html ├── style.css └── index.js ├── Gradient Generator ├── index.js ├── style.css └── index.html ├── Tic tac toe game ├── index.html ├── style.css └── script.js ├── Quiz App ├── index.html ├── style.css └── script.js ├── Typing speed Test ├── index.html ├── style.css └── script.js ├── Login Form with js ├── index.html ├── index.js └── index.css ├── Calculator ├── script.js ├── style.css └── index.html ├── Filter Gallery ├── style.css └── index.html ├── ImageEditor ├── script.js ├── index.html └── style.css ├── Parrot Color ├── index.html ├── script.js └── style.css ├── CONTRIBUTING.md └── CODE_OF_CONDUCT.md /Weather App/key.js: -------------------------------------------------------------------------------- 1 | //Assign the copied API key to the 'key' variable 2 | key = ""; -------------------------------------------------------------------------------- /clock/README.md: -------------------------------------------------------------------------------- 1 |
12 |
18 | 18 | Lorem ipsum dolor, sit amet consectetur adipisicing elit. Voluptas, 19 | magni. 20 |
21 |Some Demo Error Message
20 |6 | Please, upload an image and apply the filter that best suits the image 7 |
8 | 9 |
13 |