├── .vscode └── settings.json ├── 01-welcome ├── index.html ├── script.js └── style.css ├── 02-modal ├── background.jpg ├── index.html ├── script.js └── styles.css ├── 03-colour-flipper ├── index.html ├── script.js └── styles.css ├── 04-counter ├── index.html ├── script.js └── styles.css ├── 05-sticky-navbar ├── index.html ├── script.js └── styles.css ├── 06-tabs ├── index.html ├── script.js └── styles.css ├── 07-faqs ├── index.html ├── script.js └── styles.css ├── 08-testimonials ├── author-01.jpg ├── author-02.jpg ├── author-03.jpg ├── author-04.jpg ├── index.html ├── script.js └── styles.css ├── 09-countdown-timer ├── index.html ├── script.js ├── styles.css └── timer-bg.jpg ├── 10-star-rating ├── index.html ├── script.js └── styles.css ├── 11-sortable-table ├── index.html ├── script.js └── styles.css ├── 12-shopping-list ├── index.html ├── script.js └── styles.css ├── 13-car-race ├── car-1.png ├── car-2.png ├── index.html ├── script.js └── styles.css ├── 14-image-loader ├── index.html ├── large-image.jpg ├── script.js └── styles.css ├── 15-lorem-ipsum ├── index.html ├── script.js └── styles.css ├── 16-autocomplete ├── index.html ├── script.js └── style.css ├── 17-user-directory ├── index.html ├── script.js └── styles.css └── README.md /.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "liveServer.settings.port": 5505 3 | } -------------------------------------------------------------------------------- /01-welcome/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebubb/17-javascript-projects/HEAD/01-welcome/index.html -------------------------------------------------------------------------------- /01-welcome/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebubb/17-javascript-projects/HEAD/01-welcome/script.js -------------------------------------------------------------------------------- /01-welcome/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebubb/17-javascript-projects/HEAD/01-welcome/style.css -------------------------------------------------------------------------------- /02-modal/background.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebubb/17-javascript-projects/HEAD/02-modal/background.jpg -------------------------------------------------------------------------------- /02-modal/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebubb/17-javascript-projects/HEAD/02-modal/index.html -------------------------------------------------------------------------------- /02-modal/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebubb/17-javascript-projects/HEAD/02-modal/script.js -------------------------------------------------------------------------------- /02-modal/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebubb/17-javascript-projects/HEAD/02-modal/styles.css -------------------------------------------------------------------------------- /03-colour-flipper/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebubb/17-javascript-projects/HEAD/03-colour-flipper/index.html -------------------------------------------------------------------------------- /03-colour-flipper/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebubb/17-javascript-projects/HEAD/03-colour-flipper/script.js -------------------------------------------------------------------------------- /03-colour-flipper/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebubb/17-javascript-projects/HEAD/03-colour-flipper/styles.css -------------------------------------------------------------------------------- /04-counter/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebubb/17-javascript-projects/HEAD/04-counter/index.html -------------------------------------------------------------------------------- /04-counter/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebubb/17-javascript-projects/HEAD/04-counter/script.js -------------------------------------------------------------------------------- /04-counter/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebubb/17-javascript-projects/HEAD/04-counter/styles.css -------------------------------------------------------------------------------- /05-sticky-navbar/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebubb/17-javascript-projects/HEAD/05-sticky-navbar/index.html -------------------------------------------------------------------------------- /05-sticky-navbar/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebubb/17-javascript-projects/HEAD/05-sticky-navbar/script.js -------------------------------------------------------------------------------- /05-sticky-navbar/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebubb/17-javascript-projects/HEAD/05-sticky-navbar/styles.css -------------------------------------------------------------------------------- /06-tabs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebubb/17-javascript-projects/HEAD/06-tabs/index.html -------------------------------------------------------------------------------- /06-tabs/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebubb/17-javascript-projects/HEAD/06-tabs/script.js -------------------------------------------------------------------------------- /06-tabs/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebubb/17-javascript-projects/HEAD/06-tabs/styles.css -------------------------------------------------------------------------------- /07-faqs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebubb/17-javascript-projects/HEAD/07-faqs/index.html -------------------------------------------------------------------------------- /07-faqs/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebubb/17-javascript-projects/HEAD/07-faqs/script.js -------------------------------------------------------------------------------- /07-faqs/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebubb/17-javascript-projects/HEAD/07-faqs/styles.css -------------------------------------------------------------------------------- /08-testimonials/author-01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebubb/17-javascript-projects/HEAD/08-testimonials/author-01.jpg -------------------------------------------------------------------------------- /08-testimonials/author-02.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebubb/17-javascript-projects/HEAD/08-testimonials/author-02.jpg -------------------------------------------------------------------------------- /08-testimonials/author-03.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebubb/17-javascript-projects/HEAD/08-testimonials/author-03.jpg -------------------------------------------------------------------------------- /08-testimonials/author-04.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebubb/17-javascript-projects/HEAD/08-testimonials/author-04.jpg -------------------------------------------------------------------------------- /08-testimonials/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebubb/17-javascript-projects/HEAD/08-testimonials/index.html -------------------------------------------------------------------------------- /08-testimonials/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebubb/17-javascript-projects/HEAD/08-testimonials/script.js -------------------------------------------------------------------------------- /08-testimonials/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebubb/17-javascript-projects/HEAD/08-testimonials/styles.css -------------------------------------------------------------------------------- /09-countdown-timer/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebubb/17-javascript-projects/HEAD/09-countdown-timer/index.html -------------------------------------------------------------------------------- /09-countdown-timer/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebubb/17-javascript-projects/HEAD/09-countdown-timer/script.js -------------------------------------------------------------------------------- /09-countdown-timer/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebubb/17-javascript-projects/HEAD/09-countdown-timer/styles.css -------------------------------------------------------------------------------- /09-countdown-timer/timer-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebubb/17-javascript-projects/HEAD/09-countdown-timer/timer-bg.jpg -------------------------------------------------------------------------------- /10-star-rating/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebubb/17-javascript-projects/HEAD/10-star-rating/index.html -------------------------------------------------------------------------------- /10-star-rating/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebubb/17-javascript-projects/HEAD/10-star-rating/script.js -------------------------------------------------------------------------------- /10-star-rating/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebubb/17-javascript-projects/HEAD/10-star-rating/styles.css -------------------------------------------------------------------------------- /11-sortable-table/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebubb/17-javascript-projects/HEAD/11-sortable-table/index.html -------------------------------------------------------------------------------- /11-sortable-table/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebubb/17-javascript-projects/HEAD/11-sortable-table/script.js -------------------------------------------------------------------------------- /11-sortable-table/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebubb/17-javascript-projects/HEAD/11-sortable-table/styles.css -------------------------------------------------------------------------------- /12-shopping-list/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebubb/17-javascript-projects/HEAD/12-shopping-list/index.html -------------------------------------------------------------------------------- /12-shopping-list/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebubb/17-javascript-projects/HEAD/12-shopping-list/script.js -------------------------------------------------------------------------------- /12-shopping-list/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebubb/17-javascript-projects/HEAD/12-shopping-list/styles.css -------------------------------------------------------------------------------- /13-car-race/car-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebubb/17-javascript-projects/HEAD/13-car-race/car-1.png -------------------------------------------------------------------------------- /13-car-race/car-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebubb/17-javascript-projects/HEAD/13-car-race/car-2.png -------------------------------------------------------------------------------- /13-car-race/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebubb/17-javascript-projects/HEAD/13-car-race/index.html -------------------------------------------------------------------------------- /13-car-race/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebubb/17-javascript-projects/HEAD/13-car-race/script.js -------------------------------------------------------------------------------- /13-car-race/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebubb/17-javascript-projects/HEAD/13-car-race/styles.css -------------------------------------------------------------------------------- /14-image-loader/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebubb/17-javascript-projects/HEAD/14-image-loader/index.html -------------------------------------------------------------------------------- /14-image-loader/large-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebubb/17-javascript-projects/HEAD/14-image-loader/large-image.jpg -------------------------------------------------------------------------------- /14-image-loader/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebubb/17-javascript-projects/HEAD/14-image-loader/script.js -------------------------------------------------------------------------------- /14-image-loader/styles.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /15-lorem-ipsum/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebubb/17-javascript-projects/HEAD/15-lorem-ipsum/index.html -------------------------------------------------------------------------------- /15-lorem-ipsum/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebubb/17-javascript-projects/HEAD/15-lorem-ipsum/script.js -------------------------------------------------------------------------------- /15-lorem-ipsum/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebubb/17-javascript-projects/HEAD/15-lorem-ipsum/styles.css -------------------------------------------------------------------------------- /16-autocomplete/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebubb/17-javascript-projects/HEAD/16-autocomplete/index.html -------------------------------------------------------------------------------- /16-autocomplete/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebubb/17-javascript-projects/HEAD/16-autocomplete/script.js -------------------------------------------------------------------------------- /16-autocomplete/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebubb/17-javascript-projects/HEAD/16-autocomplete/style.css -------------------------------------------------------------------------------- /17-user-directory/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebubb/17-javascript-projects/HEAD/17-user-directory/index.html -------------------------------------------------------------------------------- /17-user-directory/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebubb/17-javascript-projects/HEAD/17-user-directory/script.js -------------------------------------------------------------------------------- /17-user-directory/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebubb/17-javascript-projects/HEAD/17-user-directory/styles.css -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebubb/17-javascript-projects/HEAD/README.md --------------------------------------------------------------------------------