├── Ad-Block-Detector ├── index.css ├── index.html └── index.js ├── Age-Calculator ├── index.html ├── index.js └── style.css ├── Background-Color-Flipper ├── index.css ├── index.html └── index.js ├── Calculator ├── index.css ├── index.html └── index.js ├── Currency-Converter ├── countries.js ├── index.css ├── index.html └── index.js ├── Custom-Select-Menu ├── index.css ├── index.html └── index.js ├── Dark-Light-Mode ├── index.html ├── index.js └── style.css ├── Dictionary-App ├── index.css ├── index.html └── index.js ├── Digital-Clock ├── index.html ├── index.js └── style.css ├── Discord-Clone ├── assets │ └── images │ │ ├── discord-icon-svgrepo-com.svg │ │ ├── icons8-usa-48.png │ │ ├── section-1.svg │ │ ├── section-2.svg │ │ ├── section-3.svg │ │ └── section-4.svg ├── index.html ├── index.js └── style.css ├── Form-Validation ├── index.html └── index.js ├── Key-Detector ├── index.css ├── index.html └── index.js ├── Language-Translator ├── countries.js ├── index.css ├── index.html └── index.js ├── Preloader ├── index.html ├── index.js └── style.css ├── Progress-Bar ├── index.html ├── index.js └── style.css ├── Quiz-App ├── index.css ├── index.html ├── index.js └── questions.js ├── README.md ├── Random-Password-Generator ├── index.html ├── index.js └── style.css ├── Random-Quotes-Generator ├── index.css ├── index.html └── index.js ├── Shopping-Cart ├── db │ └── products.js ├── index.html ├── index.js └── style.css ├── Sticky-Navbar ├── index.css ├── index.html └── index.js ├── Stop-Watch ├── index.css ├── index.html └── index.js ├── Testimonials-UI ├── index.css ├── index.html └── index.js ├── Text-To-Speech ├── index.css ├── index.html └── index.js ├── Tic-Tac-Toe-Game ├── index.css ├── index.html └── index.js ├── Todo-App ├── index.html ├── index.js └── style.css ├── Typing-Speed-Game ├── index.css ├── index.html ├── index.js └── paragraphs.js ├── UserLocation ├── index.css ├── index.html └── index.js ├── Weather-App ├── index.html ├── index.js └── style.css ├── movie-app ├── index.html ├── index.js └── style.css └── music ├── Artists ├── Ed Sheeran - 2.jpg ├── Ed Sheeran -1.jpg ├── Luis Fonsi.jpg ├── Migos.jpg ├── Monster.jpg ├── Sam Fischer.jpg ├── Shawn Mendes.jpg ├── music -wallpaper.jpg └── music.jpg ├── Music ├── Ed Sheeran - I see fire.mp3 ├── Ed Sheeran - Beautiful People (feat. Khalid) [Official].mp3 ├── Luis Fonsi, Daddy Yankee - Despacito ft. Justin Bieber.mp3 ├── Migos-Bad and Boujee.mp3 ├── Sam Fischer - This City feat. Anne-Marie.mp3 ├── Shawn Mendes - Wonder.mp3 └── Shawn Mendes, Justin Bieber - Monster.mp3 └── files ├── app.js ├── index.html └── style.css /Ad-Block-Detector/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selemondev/30-Javascript-Projects-For-Beginners/HEAD/Ad-Block-Detector/index.css -------------------------------------------------------------------------------- /Ad-Block-Detector/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selemondev/30-Javascript-Projects-For-Beginners/HEAD/Ad-Block-Detector/index.html -------------------------------------------------------------------------------- /Ad-Block-Detector/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selemondev/30-Javascript-Projects-For-Beginners/HEAD/Ad-Block-Detector/index.js -------------------------------------------------------------------------------- /Age-Calculator/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selemondev/30-Javascript-Projects-For-Beginners/HEAD/Age-Calculator/index.html -------------------------------------------------------------------------------- /Age-Calculator/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selemondev/30-Javascript-Projects-For-Beginners/HEAD/Age-Calculator/index.js -------------------------------------------------------------------------------- /Age-Calculator/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selemondev/30-Javascript-Projects-For-Beginners/HEAD/Age-Calculator/style.css -------------------------------------------------------------------------------- /Background-Color-Flipper/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selemondev/30-Javascript-Projects-For-Beginners/HEAD/Background-Color-Flipper/index.css -------------------------------------------------------------------------------- /Background-Color-Flipper/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selemondev/30-Javascript-Projects-For-Beginners/HEAD/Background-Color-Flipper/index.html -------------------------------------------------------------------------------- /Background-Color-Flipper/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selemondev/30-Javascript-Projects-For-Beginners/HEAD/Background-Color-Flipper/index.js -------------------------------------------------------------------------------- /Calculator/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selemondev/30-Javascript-Projects-For-Beginners/HEAD/Calculator/index.css -------------------------------------------------------------------------------- /Calculator/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selemondev/30-Javascript-Projects-For-Beginners/HEAD/Calculator/index.html -------------------------------------------------------------------------------- /Calculator/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selemondev/30-Javascript-Projects-For-Beginners/HEAD/Calculator/index.js -------------------------------------------------------------------------------- /Currency-Converter/countries.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selemondev/30-Javascript-Projects-For-Beginners/HEAD/Currency-Converter/countries.js -------------------------------------------------------------------------------- /Currency-Converter/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selemondev/30-Javascript-Projects-For-Beginners/HEAD/Currency-Converter/index.css -------------------------------------------------------------------------------- /Currency-Converter/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selemondev/30-Javascript-Projects-For-Beginners/HEAD/Currency-Converter/index.html -------------------------------------------------------------------------------- /Currency-Converter/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selemondev/30-Javascript-Projects-For-Beginners/HEAD/Currency-Converter/index.js -------------------------------------------------------------------------------- /Custom-Select-Menu/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selemondev/30-Javascript-Projects-For-Beginners/HEAD/Custom-Select-Menu/index.css -------------------------------------------------------------------------------- /Custom-Select-Menu/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selemondev/30-Javascript-Projects-For-Beginners/HEAD/Custom-Select-Menu/index.html -------------------------------------------------------------------------------- /Custom-Select-Menu/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selemondev/30-Javascript-Projects-For-Beginners/HEAD/Custom-Select-Menu/index.js -------------------------------------------------------------------------------- /Dark-Light-Mode/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selemondev/30-Javascript-Projects-For-Beginners/HEAD/Dark-Light-Mode/index.html -------------------------------------------------------------------------------- /Dark-Light-Mode/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selemondev/30-Javascript-Projects-For-Beginners/HEAD/Dark-Light-Mode/index.js -------------------------------------------------------------------------------- /Dark-Light-Mode/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selemondev/30-Javascript-Projects-For-Beginners/HEAD/Dark-Light-Mode/style.css -------------------------------------------------------------------------------- /Dictionary-App/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selemondev/30-Javascript-Projects-For-Beginners/HEAD/Dictionary-App/index.css -------------------------------------------------------------------------------- /Dictionary-App/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selemondev/30-Javascript-Projects-For-Beginners/HEAD/Dictionary-App/index.html -------------------------------------------------------------------------------- /Dictionary-App/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selemondev/30-Javascript-Projects-For-Beginners/HEAD/Dictionary-App/index.js -------------------------------------------------------------------------------- /Digital-Clock/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selemondev/30-Javascript-Projects-For-Beginners/HEAD/Digital-Clock/index.html -------------------------------------------------------------------------------- /Digital-Clock/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selemondev/30-Javascript-Projects-For-Beginners/HEAD/Digital-Clock/index.js -------------------------------------------------------------------------------- /Digital-Clock/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selemondev/30-Javascript-Projects-For-Beginners/HEAD/Digital-Clock/style.css -------------------------------------------------------------------------------- /Discord-Clone/assets/images/discord-icon-svgrepo-com.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selemondev/30-Javascript-Projects-For-Beginners/HEAD/Discord-Clone/assets/images/discord-icon-svgrepo-com.svg -------------------------------------------------------------------------------- /Discord-Clone/assets/images/icons8-usa-48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selemondev/30-Javascript-Projects-For-Beginners/HEAD/Discord-Clone/assets/images/icons8-usa-48.png -------------------------------------------------------------------------------- /Discord-Clone/assets/images/section-1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selemondev/30-Javascript-Projects-For-Beginners/HEAD/Discord-Clone/assets/images/section-1.svg -------------------------------------------------------------------------------- /Discord-Clone/assets/images/section-2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selemondev/30-Javascript-Projects-For-Beginners/HEAD/Discord-Clone/assets/images/section-2.svg -------------------------------------------------------------------------------- /Discord-Clone/assets/images/section-3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selemondev/30-Javascript-Projects-For-Beginners/HEAD/Discord-Clone/assets/images/section-3.svg -------------------------------------------------------------------------------- /Discord-Clone/assets/images/section-4.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selemondev/30-Javascript-Projects-For-Beginners/HEAD/Discord-Clone/assets/images/section-4.svg -------------------------------------------------------------------------------- /Discord-Clone/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selemondev/30-Javascript-Projects-For-Beginners/HEAD/Discord-Clone/index.html -------------------------------------------------------------------------------- /Discord-Clone/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selemondev/30-Javascript-Projects-For-Beginners/HEAD/Discord-Clone/index.js -------------------------------------------------------------------------------- /Discord-Clone/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selemondev/30-Javascript-Projects-For-Beginners/HEAD/Discord-Clone/style.css -------------------------------------------------------------------------------- /Form-Validation/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selemondev/30-Javascript-Projects-For-Beginners/HEAD/Form-Validation/index.html -------------------------------------------------------------------------------- /Form-Validation/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selemondev/30-Javascript-Projects-For-Beginners/HEAD/Form-Validation/index.js -------------------------------------------------------------------------------- /Key-Detector/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selemondev/30-Javascript-Projects-For-Beginners/HEAD/Key-Detector/index.css -------------------------------------------------------------------------------- /Key-Detector/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selemondev/30-Javascript-Projects-For-Beginners/HEAD/Key-Detector/index.html -------------------------------------------------------------------------------- /Key-Detector/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selemondev/30-Javascript-Projects-For-Beginners/HEAD/Key-Detector/index.js -------------------------------------------------------------------------------- /Language-Translator/countries.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selemondev/30-Javascript-Projects-For-Beginners/HEAD/Language-Translator/countries.js -------------------------------------------------------------------------------- /Language-Translator/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selemondev/30-Javascript-Projects-For-Beginners/HEAD/Language-Translator/index.css -------------------------------------------------------------------------------- /Language-Translator/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selemondev/30-Javascript-Projects-For-Beginners/HEAD/Language-Translator/index.html -------------------------------------------------------------------------------- /Language-Translator/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selemondev/30-Javascript-Projects-For-Beginners/HEAD/Language-Translator/index.js -------------------------------------------------------------------------------- /Preloader/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selemondev/30-Javascript-Projects-For-Beginners/HEAD/Preloader/index.html -------------------------------------------------------------------------------- /Preloader/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selemondev/30-Javascript-Projects-For-Beginners/HEAD/Preloader/index.js -------------------------------------------------------------------------------- /Preloader/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selemondev/30-Javascript-Projects-For-Beginners/HEAD/Preloader/style.css -------------------------------------------------------------------------------- /Progress-Bar/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selemondev/30-Javascript-Projects-For-Beginners/HEAD/Progress-Bar/index.html -------------------------------------------------------------------------------- /Progress-Bar/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selemondev/30-Javascript-Projects-For-Beginners/HEAD/Progress-Bar/index.js -------------------------------------------------------------------------------- /Progress-Bar/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selemondev/30-Javascript-Projects-For-Beginners/HEAD/Progress-Bar/style.css -------------------------------------------------------------------------------- /Quiz-App/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selemondev/30-Javascript-Projects-For-Beginners/HEAD/Quiz-App/index.css -------------------------------------------------------------------------------- /Quiz-App/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selemondev/30-Javascript-Projects-For-Beginners/HEAD/Quiz-App/index.html -------------------------------------------------------------------------------- /Quiz-App/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selemondev/30-Javascript-Projects-For-Beginners/HEAD/Quiz-App/index.js -------------------------------------------------------------------------------- /Quiz-App/questions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selemondev/30-Javascript-Projects-For-Beginners/HEAD/Quiz-App/questions.js -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selemondev/30-Javascript-Projects-For-Beginners/HEAD/README.md -------------------------------------------------------------------------------- /Random-Password-Generator/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selemondev/30-Javascript-Projects-For-Beginners/HEAD/Random-Password-Generator/index.html -------------------------------------------------------------------------------- /Random-Password-Generator/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selemondev/30-Javascript-Projects-For-Beginners/HEAD/Random-Password-Generator/index.js -------------------------------------------------------------------------------- /Random-Password-Generator/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selemondev/30-Javascript-Projects-For-Beginners/HEAD/Random-Password-Generator/style.css -------------------------------------------------------------------------------- /Random-Quotes-Generator/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selemondev/30-Javascript-Projects-For-Beginners/HEAD/Random-Quotes-Generator/index.css -------------------------------------------------------------------------------- /Random-Quotes-Generator/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selemondev/30-Javascript-Projects-For-Beginners/HEAD/Random-Quotes-Generator/index.html -------------------------------------------------------------------------------- /Random-Quotes-Generator/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selemondev/30-Javascript-Projects-For-Beginners/HEAD/Random-Quotes-Generator/index.js -------------------------------------------------------------------------------- /Shopping-Cart/db/products.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selemondev/30-Javascript-Projects-For-Beginners/HEAD/Shopping-Cart/db/products.js -------------------------------------------------------------------------------- /Shopping-Cart/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selemondev/30-Javascript-Projects-For-Beginners/HEAD/Shopping-Cart/index.html -------------------------------------------------------------------------------- /Shopping-Cart/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selemondev/30-Javascript-Projects-For-Beginners/HEAD/Shopping-Cart/index.js -------------------------------------------------------------------------------- /Shopping-Cart/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selemondev/30-Javascript-Projects-For-Beginners/HEAD/Shopping-Cart/style.css -------------------------------------------------------------------------------- /Sticky-Navbar/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selemondev/30-Javascript-Projects-For-Beginners/HEAD/Sticky-Navbar/index.css -------------------------------------------------------------------------------- /Sticky-Navbar/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selemondev/30-Javascript-Projects-For-Beginners/HEAD/Sticky-Navbar/index.html -------------------------------------------------------------------------------- /Sticky-Navbar/index.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Stop-Watch/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selemondev/30-Javascript-Projects-For-Beginners/HEAD/Stop-Watch/index.css -------------------------------------------------------------------------------- /Stop-Watch/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selemondev/30-Javascript-Projects-For-Beginners/HEAD/Stop-Watch/index.html -------------------------------------------------------------------------------- /Stop-Watch/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selemondev/30-Javascript-Projects-For-Beginners/HEAD/Stop-Watch/index.js -------------------------------------------------------------------------------- /Testimonials-UI/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selemondev/30-Javascript-Projects-For-Beginners/HEAD/Testimonials-UI/index.css -------------------------------------------------------------------------------- /Testimonials-UI/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selemondev/30-Javascript-Projects-For-Beginners/HEAD/Testimonials-UI/index.html -------------------------------------------------------------------------------- /Testimonials-UI/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selemondev/30-Javascript-Projects-For-Beginners/HEAD/Testimonials-UI/index.js -------------------------------------------------------------------------------- /Text-To-Speech/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selemondev/30-Javascript-Projects-For-Beginners/HEAD/Text-To-Speech/index.css -------------------------------------------------------------------------------- /Text-To-Speech/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selemondev/30-Javascript-Projects-For-Beginners/HEAD/Text-To-Speech/index.html -------------------------------------------------------------------------------- /Text-To-Speech/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selemondev/30-Javascript-Projects-For-Beginners/HEAD/Text-To-Speech/index.js -------------------------------------------------------------------------------- /Tic-Tac-Toe-Game/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selemondev/30-Javascript-Projects-For-Beginners/HEAD/Tic-Tac-Toe-Game/index.css -------------------------------------------------------------------------------- /Tic-Tac-Toe-Game/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selemondev/30-Javascript-Projects-For-Beginners/HEAD/Tic-Tac-Toe-Game/index.html -------------------------------------------------------------------------------- /Tic-Tac-Toe-Game/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selemondev/30-Javascript-Projects-For-Beginners/HEAD/Tic-Tac-Toe-Game/index.js -------------------------------------------------------------------------------- /Todo-App/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selemondev/30-Javascript-Projects-For-Beginners/HEAD/Todo-App/index.html -------------------------------------------------------------------------------- /Todo-App/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selemondev/30-Javascript-Projects-For-Beginners/HEAD/Todo-App/index.js -------------------------------------------------------------------------------- /Todo-App/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selemondev/30-Javascript-Projects-For-Beginners/HEAD/Todo-App/style.css -------------------------------------------------------------------------------- /Typing-Speed-Game/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selemondev/30-Javascript-Projects-For-Beginners/HEAD/Typing-Speed-Game/index.css -------------------------------------------------------------------------------- /Typing-Speed-Game/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selemondev/30-Javascript-Projects-For-Beginners/HEAD/Typing-Speed-Game/index.html -------------------------------------------------------------------------------- /Typing-Speed-Game/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selemondev/30-Javascript-Projects-For-Beginners/HEAD/Typing-Speed-Game/index.js -------------------------------------------------------------------------------- /Typing-Speed-Game/paragraphs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selemondev/30-Javascript-Projects-For-Beginners/HEAD/Typing-Speed-Game/paragraphs.js -------------------------------------------------------------------------------- /UserLocation/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selemondev/30-Javascript-Projects-For-Beginners/HEAD/UserLocation/index.css -------------------------------------------------------------------------------- /UserLocation/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selemondev/30-Javascript-Projects-For-Beginners/HEAD/UserLocation/index.html -------------------------------------------------------------------------------- /UserLocation/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selemondev/30-Javascript-Projects-For-Beginners/HEAD/UserLocation/index.js -------------------------------------------------------------------------------- /Weather-App/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selemondev/30-Javascript-Projects-For-Beginners/HEAD/Weather-App/index.html -------------------------------------------------------------------------------- /Weather-App/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selemondev/30-Javascript-Projects-For-Beginners/HEAD/Weather-App/index.js -------------------------------------------------------------------------------- /Weather-App/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selemondev/30-Javascript-Projects-For-Beginners/HEAD/Weather-App/style.css -------------------------------------------------------------------------------- /movie-app/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selemondev/30-Javascript-Projects-For-Beginners/HEAD/movie-app/index.html -------------------------------------------------------------------------------- /movie-app/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selemondev/30-Javascript-Projects-For-Beginners/HEAD/movie-app/index.js -------------------------------------------------------------------------------- /movie-app/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selemondev/30-Javascript-Projects-For-Beginners/HEAD/movie-app/style.css -------------------------------------------------------------------------------- /music/Artists/Ed Sheeran - 2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selemondev/30-Javascript-Projects-For-Beginners/HEAD/music/Artists/Ed Sheeran - 2.jpg -------------------------------------------------------------------------------- /music/Artists/Ed Sheeran -1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selemondev/30-Javascript-Projects-For-Beginners/HEAD/music/Artists/Ed Sheeran -1.jpg -------------------------------------------------------------------------------- /music/Artists/Luis Fonsi.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selemondev/30-Javascript-Projects-For-Beginners/HEAD/music/Artists/Luis Fonsi.jpg -------------------------------------------------------------------------------- /music/Artists/Migos.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selemondev/30-Javascript-Projects-For-Beginners/HEAD/music/Artists/Migos.jpg -------------------------------------------------------------------------------- /music/Artists/Monster.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selemondev/30-Javascript-Projects-For-Beginners/HEAD/music/Artists/Monster.jpg -------------------------------------------------------------------------------- /music/Artists/Sam Fischer.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selemondev/30-Javascript-Projects-For-Beginners/HEAD/music/Artists/Sam Fischer.jpg -------------------------------------------------------------------------------- /music/Artists/Shawn Mendes.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selemondev/30-Javascript-Projects-For-Beginners/HEAD/music/Artists/Shawn Mendes.jpg -------------------------------------------------------------------------------- /music/Artists/music -wallpaper.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selemondev/30-Javascript-Projects-For-Beginners/HEAD/music/Artists/music -wallpaper.jpg -------------------------------------------------------------------------------- /music/Artists/music.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selemondev/30-Javascript-Projects-For-Beginners/HEAD/music/Artists/music.jpg -------------------------------------------------------------------------------- /music/Music/Ed Sheeran - I see fire.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selemondev/30-Javascript-Projects-For-Beginners/HEAD/music/Music/Ed Sheeran - I see fire.mp3 -------------------------------------------------------------------------------- /music/Music/Ed Sheeran - Beautiful People (feat. Khalid) [Official].mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selemondev/30-Javascript-Projects-For-Beginners/HEAD/music/Music/Ed Sheeran - Beautiful People (feat. Khalid) [Official].mp3 -------------------------------------------------------------------------------- /music/Music/Luis Fonsi, Daddy Yankee - Despacito ft. Justin Bieber.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selemondev/30-Javascript-Projects-For-Beginners/HEAD/music/Music/Luis Fonsi, Daddy Yankee - Despacito ft. Justin Bieber.mp3 -------------------------------------------------------------------------------- /music/Music/Migos-Bad and Boujee.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selemondev/30-Javascript-Projects-For-Beginners/HEAD/music/Music/Migos-Bad and Boujee.mp3 -------------------------------------------------------------------------------- /music/Music/Sam Fischer - This City feat. Anne-Marie.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selemondev/30-Javascript-Projects-For-Beginners/HEAD/music/Music/Sam Fischer - This City feat. Anne-Marie.mp3 -------------------------------------------------------------------------------- /music/Music/Shawn Mendes - Wonder.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selemondev/30-Javascript-Projects-For-Beginners/HEAD/music/Music/Shawn Mendes - Wonder.mp3 -------------------------------------------------------------------------------- /music/Music/Shawn Mendes, Justin Bieber - Monster.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selemondev/30-Javascript-Projects-For-Beginners/HEAD/music/Music/Shawn Mendes, Justin Bieber - Monster.mp3 -------------------------------------------------------------------------------- /music/files/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selemondev/30-Javascript-Projects-For-Beginners/HEAD/music/files/app.js -------------------------------------------------------------------------------- /music/files/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selemondev/30-Javascript-Projects-For-Beginners/HEAD/music/files/index.html -------------------------------------------------------------------------------- /music/files/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selemondev/30-Javascript-Projects-For-Beginners/HEAD/music/files/style.css --------------------------------------------------------------------------------