├── .github └── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── 30dayofJavascriptProject ├── Images │ ├── AlarmClock.png │ ├── Calculator.png │ ├── Calender.png │ ├── Captcha.png │ ├── ColorPallat.png │ ├── CountryGuide.png │ ├── Dictionary.png │ ├── FaviconFetcher.png │ ├── FilterImage.png │ ├── GradientGenerator.png │ ├── ImageEditor.png │ ├── ImageFilter.png │ ├── LoginForm.png │ ├── MathGame.png │ ├── Meme.png │ ├── ParrotColor.png │ ├── ProductZoom.png │ ├── ProfileCard.png │ ├── QuizApp.png │ ├── Quote.png │ ├── RandomUser.png │ ├── Recipe.png │ ├── Scratch.png │ ├── SimpleInterest.png │ ├── Tictoetak.png │ ├── TodoList.png │ ├── TypingSpeed.png │ └── clock.png ├── index.html ├── script.js └── style.css ├── Alarm Clock ├── images.jpg ├── index.html ├── ringtone.mp3 ├── script.js └── style.css ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── Calculator ├── index.html ├── script.js └── style.css ├── Calendar ├── index.html ├── index.js └── style.css ├── Captcha in js ├── index.html ├── index.js └── style.css ├── Color Palette Generator ├── app.js ├── index.html └── style.css ├── Dictionary ├── index.html ├── index.js └── style.css ├── Favicon Fetcher generator ├── index.html ├── index.js └── style.css ├── Filter Gallery ├── index.html └── style.css ├── Filter Image ├── index.html └── index.js ├── Flag Game ├── index.html ├── script.js └── style.css ├── Gradient Generator ├── index.html ├── index.js └── style.css ├── ImageEditor ├── index.html ├── script.js └── style.css ├── LICENSE ├── Login Form with js ├── index.css ├── index.html └── index.js ├── Math Game ├── index.css ├── index.html └── index.js ├── Memory Game ├── index.html ├── script.js └── style.css ├── Parrot Color ├── index.html ├── script.js └── style.css ├── Product Image Zoom ├── index.html ├── script.js └── style.css ├── Profile Card ├── index.html ├── profile.png ├── script.js └── style.css ├── Quiz App ├── index.html ├── script.js └── style.css ├── README.md ├── Ramdom User cards ├── index.css ├── index.html └── index.js ├── Random Mems App ├── index.css ├── index.html └── index.js ├── Random quote genertor ├── index.html ├── script.js └── style.css ├── Recipe App ├── index.html ├── index.js └── style.css ├── Scratch Card ├── index.html ├── script.js └── style.css ├── Simple Interest App ├── index.html ├── script.js └── style.css ├── Tic tac toe game ├── index.html ├── script.js └── style.css ├── Todo List ├── index.css ├── index.html └── index.js ├── Typing speed Test ├── index.html ├── script.js └── style.css ├── Weather App ├── index.html ├── key.js ├── script.js └── style.css ├── clock ├── README.md ├── index.html └── sytle.css └── country Guide App ├── index.html ├── index.js └── style.css /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Preetiraj3697/30dayofJavascript/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Preetiraj3697/30dayofJavascript/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /30dayofJavascriptProject/Images/AlarmClock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Preetiraj3697/30dayofJavascript/HEAD/30dayofJavascriptProject/Images/AlarmClock.png -------------------------------------------------------------------------------- /30dayofJavascriptProject/Images/Calculator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Preetiraj3697/30dayofJavascript/HEAD/30dayofJavascriptProject/Images/Calculator.png -------------------------------------------------------------------------------- /30dayofJavascriptProject/Images/Calender.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Preetiraj3697/30dayofJavascript/HEAD/30dayofJavascriptProject/Images/Calender.png -------------------------------------------------------------------------------- /30dayofJavascriptProject/Images/Captcha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Preetiraj3697/30dayofJavascript/HEAD/30dayofJavascriptProject/Images/Captcha.png -------------------------------------------------------------------------------- /30dayofJavascriptProject/Images/ColorPallat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Preetiraj3697/30dayofJavascript/HEAD/30dayofJavascriptProject/Images/ColorPallat.png -------------------------------------------------------------------------------- /30dayofJavascriptProject/Images/CountryGuide.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Preetiraj3697/30dayofJavascript/HEAD/30dayofJavascriptProject/Images/CountryGuide.png -------------------------------------------------------------------------------- /30dayofJavascriptProject/Images/Dictionary.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Preetiraj3697/30dayofJavascript/HEAD/30dayofJavascriptProject/Images/Dictionary.png -------------------------------------------------------------------------------- /30dayofJavascriptProject/Images/FaviconFetcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Preetiraj3697/30dayofJavascript/HEAD/30dayofJavascriptProject/Images/FaviconFetcher.png -------------------------------------------------------------------------------- /30dayofJavascriptProject/Images/FilterImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Preetiraj3697/30dayofJavascript/HEAD/30dayofJavascriptProject/Images/FilterImage.png -------------------------------------------------------------------------------- /30dayofJavascriptProject/Images/GradientGenerator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Preetiraj3697/30dayofJavascript/HEAD/30dayofJavascriptProject/Images/GradientGenerator.png -------------------------------------------------------------------------------- /30dayofJavascriptProject/Images/ImageEditor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Preetiraj3697/30dayofJavascript/HEAD/30dayofJavascriptProject/Images/ImageEditor.png -------------------------------------------------------------------------------- /30dayofJavascriptProject/Images/ImageFilter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Preetiraj3697/30dayofJavascript/HEAD/30dayofJavascriptProject/Images/ImageFilter.png -------------------------------------------------------------------------------- /30dayofJavascriptProject/Images/LoginForm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Preetiraj3697/30dayofJavascript/HEAD/30dayofJavascriptProject/Images/LoginForm.png -------------------------------------------------------------------------------- /30dayofJavascriptProject/Images/MathGame.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Preetiraj3697/30dayofJavascript/HEAD/30dayofJavascriptProject/Images/MathGame.png -------------------------------------------------------------------------------- /30dayofJavascriptProject/Images/Meme.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Preetiraj3697/30dayofJavascript/HEAD/30dayofJavascriptProject/Images/Meme.png -------------------------------------------------------------------------------- /30dayofJavascriptProject/Images/ParrotColor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Preetiraj3697/30dayofJavascript/HEAD/30dayofJavascriptProject/Images/ParrotColor.png -------------------------------------------------------------------------------- /30dayofJavascriptProject/Images/ProductZoom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Preetiraj3697/30dayofJavascript/HEAD/30dayofJavascriptProject/Images/ProductZoom.png -------------------------------------------------------------------------------- /30dayofJavascriptProject/Images/ProfileCard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Preetiraj3697/30dayofJavascript/HEAD/30dayofJavascriptProject/Images/ProfileCard.png -------------------------------------------------------------------------------- /30dayofJavascriptProject/Images/QuizApp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Preetiraj3697/30dayofJavascript/HEAD/30dayofJavascriptProject/Images/QuizApp.png -------------------------------------------------------------------------------- /30dayofJavascriptProject/Images/Quote.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Preetiraj3697/30dayofJavascript/HEAD/30dayofJavascriptProject/Images/Quote.png -------------------------------------------------------------------------------- /30dayofJavascriptProject/Images/RandomUser.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Preetiraj3697/30dayofJavascript/HEAD/30dayofJavascriptProject/Images/RandomUser.png -------------------------------------------------------------------------------- /30dayofJavascriptProject/Images/Recipe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Preetiraj3697/30dayofJavascript/HEAD/30dayofJavascriptProject/Images/Recipe.png -------------------------------------------------------------------------------- /30dayofJavascriptProject/Images/Scratch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Preetiraj3697/30dayofJavascript/HEAD/30dayofJavascriptProject/Images/Scratch.png -------------------------------------------------------------------------------- /30dayofJavascriptProject/Images/SimpleInterest.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Preetiraj3697/30dayofJavascript/HEAD/30dayofJavascriptProject/Images/SimpleInterest.png -------------------------------------------------------------------------------- /30dayofJavascriptProject/Images/Tictoetak.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Preetiraj3697/30dayofJavascript/HEAD/30dayofJavascriptProject/Images/Tictoetak.png -------------------------------------------------------------------------------- /30dayofJavascriptProject/Images/TodoList.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Preetiraj3697/30dayofJavascript/HEAD/30dayofJavascriptProject/Images/TodoList.png -------------------------------------------------------------------------------- /30dayofJavascriptProject/Images/TypingSpeed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Preetiraj3697/30dayofJavascript/HEAD/30dayofJavascriptProject/Images/TypingSpeed.png -------------------------------------------------------------------------------- /30dayofJavascriptProject/Images/clock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Preetiraj3697/30dayofJavascript/HEAD/30dayofJavascriptProject/Images/clock.png -------------------------------------------------------------------------------- /30dayofJavascriptProject/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Preetiraj3697/30dayofJavascript/HEAD/30dayofJavascriptProject/index.html -------------------------------------------------------------------------------- /30dayofJavascriptProject/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Preetiraj3697/30dayofJavascript/HEAD/30dayofJavascriptProject/script.js -------------------------------------------------------------------------------- /30dayofJavascriptProject/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Preetiraj3697/30dayofJavascript/HEAD/30dayofJavascriptProject/style.css -------------------------------------------------------------------------------- /Alarm Clock/images.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Preetiraj3697/30dayofJavascript/HEAD/Alarm Clock/images.jpg -------------------------------------------------------------------------------- /Alarm Clock/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Preetiraj3697/30dayofJavascript/HEAD/Alarm Clock/index.html -------------------------------------------------------------------------------- /Alarm Clock/ringtone.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Preetiraj3697/30dayofJavascript/HEAD/Alarm Clock/ringtone.mp3 -------------------------------------------------------------------------------- /Alarm Clock/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Preetiraj3697/30dayofJavascript/HEAD/Alarm Clock/script.js -------------------------------------------------------------------------------- /Alarm Clock/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Preetiraj3697/30dayofJavascript/HEAD/Alarm Clock/style.css -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Preetiraj3697/30dayofJavascript/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Preetiraj3697/30dayofJavascript/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Calculator/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Preetiraj3697/30dayofJavascript/HEAD/Calculator/index.html -------------------------------------------------------------------------------- /Calculator/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Preetiraj3697/30dayofJavascript/HEAD/Calculator/script.js -------------------------------------------------------------------------------- /Calculator/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Preetiraj3697/30dayofJavascript/HEAD/Calculator/style.css -------------------------------------------------------------------------------- /Calendar/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Preetiraj3697/30dayofJavascript/HEAD/Calendar/index.html -------------------------------------------------------------------------------- /Calendar/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Preetiraj3697/30dayofJavascript/HEAD/Calendar/index.js -------------------------------------------------------------------------------- /Calendar/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Preetiraj3697/30dayofJavascript/HEAD/Calendar/style.css -------------------------------------------------------------------------------- /Captcha in js/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Preetiraj3697/30dayofJavascript/HEAD/Captcha in js/index.html -------------------------------------------------------------------------------- /Captcha in js/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Preetiraj3697/30dayofJavascript/HEAD/Captcha in js/index.js -------------------------------------------------------------------------------- /Captcha in js/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Preetiraj3697/30dayofJavascript/HEAD/Captcha in js/style.css -------------------------------------------------------------------------------- /Color Palette Generator/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Preetiraj3697/30dayofJavascript/HEAD/Color Palette Generator/app.js -------------------------------------------------------------------------------- /Color Palette Generator/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Preetiraj3697/30dayofJavascript/HEAD/Color Palette Generator/index.html -------------------------------------------------------------------------------- /Color Palette Generator/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Preetiraj3697/30dayofJavascript/HEAD/Color Palette Generator/style.css -------------------------------------------------------------------------------- /Dictionary/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Preetiraj3697/30dayofJavascript/HEAD/Dictionary/index.html -------------------------------------------------------------------------------- /Dictionary/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Preetiraj3697/30dayofJavascript/HEAD/Dictionary/index.js -------------------------------------------------------------------------------- /Dictionary/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Preetiraj3697/30dayofJavascript/HEAD/Dictionary/style.css -------------------------------------------------------------------------------- /Favicon Fetcher generator/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Preetiraj3697/30dayofJavascript/HEAD/Favicon Fetcher generator/index.html -------------------------------------------------------------------------------- /Favicon Fetcher generator/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Preetiraj3697/30dayofJavascript/HEAD/Favicon Fetcher generator/index.js -------------------------------------------------------------------------------- /Favicon Fetcher generator/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Preetiraj3697/30dayofJavascript/HEAD/Favicon Fetcher generator/style.css -------------------------------------------------------------------------------- /Filter Gallery/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Preetiraj3697/30dayofJavascript/HEAD/Filter Gallery/index.html -------------------------------------------------------------------------------- /Filter Gallery/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Preetiraj3697/30dayofJavascript/HEAD/Filter Gallery/style.css -------------------------------------------------------------------------------- /Filter Image/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Preetiraj3697/30dayofJavascript/HEAD/Filter Image/index.html -------------------------------------------------------------------------------- /Filter Image/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Preetiraj3697/30dayofJavascript/HEAD/Filter Image/index.js -------------------------------------------------------------------------------- /Flag Game/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Preetiraj3697/30dayofJavascript/HEAD/Flag Game/index.html -------------------------------------------------------------------------------- /Flag Game/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Preetiraj3697/30dayofJavascript/HEAD/Flag Game/script.js -------------------------------------------------------------------------------- /Flag Game/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Preetiraj3697/30dayofJavascript/HEAD/Flag Game/style.css -------------------------------------------------------------------------------- /Gradient Generator/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Preetiraj3697/30dayofJavascript/HEAD/Gradient Generator/index.html -------------------------------------------------------------------------------- /Gradient Generator/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Preetiraj3697/30dayofJavascript/HEAD/Gradient Generator/index.js -------------------------------------------------------------------------------- /Gradient Generator/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Preetiraj3697/30dayofJavascript/HEAD/Gradient Generator/style.css -------------------------------------------------------------------------------- /ImageEditor/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Preetiraj3697/30dayofJavascript/HEAD/ImageEditor/index.html -------------------------------------------------------------------------------- /ImageEditor/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Preetiraj3697/30dayofJavascript/HEAD/ImageEditor/script.js -------------------------------------------------------------------------------- /ImageEditor/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Preetiraj3697/30dayofJavascript/HEAD/ImageEditor/style.css -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Preetiraj3697/30dayofJavascript/HEAD/LICENSE -------------------------------------------------------------------------------- /Login Form with js/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Preetiraj3697/30dayofJavascript/HEAD/Login Form with js/index.css -------------------------------------------------------------------------------- /Login Form with js/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Preetiraj3697/30dayofJavascript/HEAD/Login Form with js/index.html -------------------------------------------------------------------------------- /Login Form with js/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Preetiraj3697/30dayofJavascript/HEAD/Login Form with js/index.js -------------------------------------------------------------------------------- /Math Game/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Preetiraj3697/30dayofJavascript/HEAD/Math Game/index.css -------------------------------------------------------------------------------- /Math Game/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Preetiraj3697/30dayofJavascript/HEAD/Math Game/index.html -------------------------------------------------------------------------------- /Math Game/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Preetiraj3697/30dayofJavascript/HEAD/Math Game/index.js -------------------------------------------------------------------------------- /Memory Game/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Preetiraj3697/30dayofJavascript/HEAD/Memory Game/index.html -------------------------------------------------------------------------------- /Memory Game/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Preetiraj3697/30dayofJavascript/HEAD/Memory Game/script.js -------------------------------------------------------------------------------- /Memory Game/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Preetiraj3697/30dayofJavascript/HEAD/Memory Game/style.css -------------------------------------------------------------------------------- /Parrot Color/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Preetiraj3697/30dayofJavascript/HEAD/Parrot Color/index.html -------------------------------------------------------------------------------- /Parrot Color/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Preetiraj3697/30dayofJavascript/HEAD/Parrot Color/script.js -------------------------------------------------------------------------------- /Parrot Color/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Preetiraj3697/30dayofJavascript/HEAD/Parrot Color/style.css -------------------------------------------------------------------------------- /Product Image Zoom/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Preetiraj3697/30dayofJavascript/HEAD/Product Image Zoom/index.html -------------------------------------------------------------------------------- /Product Image Zoom/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Preetiraj3697/30dayofJavascript/HEAD/Product Image Zoom/script.js -------------------------------------------------------------------------------- /Product Image Zoom/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Preetiraj3697/30dayofJavascript/HEAD/Product Image Zoom/style.css -------------------------------------------------------------------------------- /Profile Card/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Preetiraj3697/30dayofJavascript/HEAD/Profile Card/index.html -------------------------------------------------------------------------------- /Profile Card/profile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Preetiraj3697/30dayofJavascript/HEAD/Profile Card/profile.png -------------------------------------------------------------------------------- /Profile Card/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Preetiraj3697/30dayofJavascript/HEAD/Profile Card/script.js -------------------------------------------------------------------------------- /Profile Card/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Preetiraj3697/30dayofJavascript/HEAD/Profile Card/style.css -------------------------------------------------------------------------------- /Quiz App/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Preetiraj3697/30dayofJavascript/HEAD/Quiz App/index.html -------------------------------------------------------------------------------- /Quiz App/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Preetiraj3697/30dayofJavascript/HEAD/Quiz App/script.js -------------------------------------------------------------------------------- /Quiz App/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Preetiraj3697/30dayofJavascript/HEAD/Quiz App/style.css -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Preetiraj3697/30dayofJavascript/HEAD/README.md -------------------------------------------------------------------------------- /Ramdom User cards/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Preetiraj3697/30dayofJavascript/HEAD/Ramdom User cards/index.css -------------------------------------------------------------------------------- /Ramdom User cards/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Preetiraj3697/30dayofJavascript/HEAD/Ramdom User cards/index.html -------------------------------------------------------------------------------- /Ramdom User cards/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Preetiraj3697/30dayofJavascript/HEAD/Ramdom User cards/index.js -------------------------------------------------------------------------------- /Random Mems App/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Preetiraj3697/30dayofJavascript/HEAD/Random Mems App/index.css -------------------------------------------------------------------------------- /Random Mems App/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Preetiraj3697/30dayofJavascript/HEAD/Random Mems App/index.html -------------------------------------------------------------------------------- /Random Mems App/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Preetiraj3697/30dayofJavascript/HEAD/Random Mems App/index.js -------------------------------------------------------------------------------- /Random quote genertor/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Preetiraj3697/30dayofJavascript/HEAD/Random quote genertor/index.html -------------------------------------------------------------------------------- /Random quote genertor/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Preetiraj3697/30dayofJavascript/HEAD/Random quote genertor/script.js -------------------------------------------------------------------------------- /Random quote genertor/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Preetiraj3697/30dayofJavascript/HEAD/Random quote genertor/style.css -------------------------------------------------------------------------------- /Recipe App/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Preetiraj3697/30dayofJavascript/HEAD/Recipe App/index.html -------------------------------------------------------------------------------- /Recipe App/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Preetiraj3697/30dayofJavascript/HEAD/Recipe App/index.js -------------------------------------------------------------------------------- /Recipe App/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Preetiraj3697/30dayofJavascript/HEAD/Recipe App/style.css -------------------------------------------------------------------------------- /Scratch Card/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Preetiraj3697/30dayofJavascript/HEAD/Scratch Card/index.html -------------------------------------------------------------------------------- /Scratch Card/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Preetiraj3697/30dayofJavascript/HEAD/Scratch Card/script.js -------------------------------------------------------------------------------- /Scratch Card/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Preetiraj3697/30dayofJavascript/HEAD/Scratch Card/style.css -------------------------------------------------------------------------------- /Simple Interest App/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Preetiraj3697/30dayofJavascript/HEAD/Simple Interest App/index.html -------------------------------------------------------------------------------- /Simple Interest App/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Preetiraj3697/30dayofJavascript/HEAD/Simple Interest App/script.js -------------------------------------------------------------------------------- /Simple Interest App/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Preetiraj3697/30dayofJavascript/HEAD/Simple Interest App/style.css -------------------------------------------------------------------------------- /Tic tac toe game/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Preetiraj3697/30dayofJavascript/HEAD/Tic tac toe game/index.html -------------------------------------------------------------------------------- /Tic tac toe game/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Preetiraj3697/30dayofJavascript/HEAD/Tic tac toe game/script.js -------------------------------------------------------------------------------- /Tic tac toe game/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Preetiraj3697/30dayofJavascript/HEAD/Tic tac toe game/style.css -------------------------------------------------------------------------------- /Todo List/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Preetiraj3697/30dayofJavascript/HEAD/Todo List/index.css -------------------------------------------------------------------------------- /Todo List/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Preetiraj3697/30dayofJavascript/HEAD/Todo List/index.html -------------------------------------------------------------------------------- /Todo List/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Preetiraj3697/30dayofJavascript/HEAD/Todo List/index.js -------------------------------------------------------------------------------- /Typing speed Test/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Preetiraj3697/30dayofJavascript/HEAD/Typing speed Test/index.html -------------------------------------------------------------------------------- /Typing speed Test/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Preetiraj3697/30dayofJavascript/HEAD/Typing speed Test/script.js -------------------------------------------------------------------------------- /Typing speed Test/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Preetiraj3697/30dayofJavascript/HEAD/Typing speed Test/style.css -------------------------------------------------------------------------------- /Weather App/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Preetiraj3697/30dayofJavascript/HEAD/Weather App/index.html -------------------------------------------------------------------------------- /Weather App/key.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Preetiraj3697/30dayofJavascript/HEAD/Weather App/key.js -------------------------------------------------------------------------------- /Weather App/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Preetiraj3697/30dayofJavascript/HEAD/Weather App/script.js -------------------------------------------------------------------------------- /Weather App/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Preetiraj3697/30dayofJavascript/HEAD/Weather App/style.css -------------------------------------------------------------------------------- /clock/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Preetiraj3697/30dayofJavascript/HEAD/clock/README.md -------------------------------------------------------------------------------- /clock/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Preetiraj3697/30dayofJavascript/HEAD/clock/index.html -------------------------------------------------------------------------------- /clock/sytle.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Preetiraj3697/30dayofJavascript/HEAD/clock/sytle.css -------------------------------------------------------------------------------- /country Guide App/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Preetiraj3697/30dayofJavascript/HEAD/country Guide App/index.html -------------------------------------------------------------------------------- /country Guide App/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Preetiraj3697/30dayofJavascript/HEAD/country Guide App/index.js -------------------------------------------------------------------------------- /country Guide App/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Preetiraj3697/30dayofJavascript/HEAD/country Guide App/style.css --------------------------------------------------------------------------------