├── .gitignore ├── 3d-boxes-background ├── index.html ├── script.js └── style.css ├── README.md ├── _project_starter_ ├── index.html ├── script.js └── style.css ├── animated-countdown ├── index.html ├── script.js └── style.css ├── animated-navigation ├── index.html ├── script.js └── style.css ├── auto-text-effect ├── index.html ├── script.js └── style.css ├── background-slider ├── index.html ├── script.js └── style.css ├── blurry-loading ├── index.html ├── script.js └── style.css ├── button-ripple-effect ├── index.html ├── script.js └── style.css ├── content-placeholder ├── index.html ├── script.js └── style.css ├── custom-range-slider ├── .vscode │ └── settings.json ├── index.html ├── script.js └── style.css ├── dad-jokes ├── index.html ├── script.js └── style.css ├── double-click-heart ├── index.html ├── script.js └── style.css ├── double-vertical-slider ├── index.html ├── script.js └── style.css ├── drag-n-drop ├── index.html ├── script.js └── style.css ├── drawing-app ├── index.html ├── script.js └── style.css ├── drink-water ├── index.html ├── script.js └── style.css ├── event-keycodes ├── index.html ├── script.js └── style.css ├── expanding-cards ├── index.html ├── script.js └── style.css ├── faq-collapse ├── index.html ├── script.js └── style.css ├── feedback-ui-design ├── index.html ├── script.js └── style.css ├── form-input-wave ├── index.html ├── script.js └── style.css ├── github-profiles ├── index.html ├── script.js └── style.css ├── good-cheap-fast ├── index.html ├── script.js └── style.css ├── hidden-search ├── index.html ├── script.js └── style.css ├── hoverboard ├── index.html ├── script.js └── style.css ├── image-carousel ├── index.html ├── script.js └── style.css ├── incrementing-counter ├── index.html ├── script.js └── style.css ├── insect-catch-game ├── index.html ├── script.js └── style.css ├── kinetic-loader ├── index.html └── style.css ├── live-user-filter ├── index.html ├── script.js └── style.css ├── mobile-tab-navigation ├── index.html ├── script.js └── style.css ├── movie-app ├── index.html ├── script.js └── style.css ├── netflix-mobile-navigation ├── index.html ├── script.js └── style.css ├── notes-app ├── index.html ├── script.js └── style.css ├── password-generator ├── index.html ├── script.js └── style.css ├── password-strength-background ├── index.html ├── script.js └── style.css ├── pokedex ├── index.html ├── script.js └── style.css ├── progress-steps ├── index.html ├── script.js └── style.css ├── quiz-app ├── index.html ├── script.js └── style.css ├── random-choice-picker ├── index.html ├── script.js └── style.css ├── random-image-generator ├── index.html ├── script.js └── style.css ├── rotating-nav-animation ├── index.html ├── script.js └── style.css ├── scroll-animation ├── index.html ├── script.js └── style.css ├── sound-board ├── index.html ├── script.js ├── sounds │ ├── applause.mp3 │ ├── boo.mp3 │ ├── gasp.mp3 │ ├── tada.mp3 │ ├── victory.mp3 │ └── wrong.mp3 └── style.css ├── split-landing-page ├── index.html ├── ps.jpg ├── script.js ├── style.css └── xbox.jpg ├── sticky-navigation ├── index.html ├── script.js └── style.css ├── testimonial-box-switcher ├── index.html ├── script.js └── style.css ├── theme-clock ├── index.html ├── script.js └── style.css ├── toast-notification ├── index.html ├── script.js └── style.css ├── todo-list ├── index.html ├── script.js └── style.css └── verify-account-ui ├── index.html ├── script.js └── style.css /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store -------------------------------------------------------------------------------- /3d-boxes-background/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xprincedev/HTML-CSS-Training/HEAD/3d-boxes-background/index.html -------------------------------------------------------------------------------- /3d-boxes-background/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xprincedev/HTML-CSS-Training/HEAD/3d-boxes-background/script.js -------------------------------------------------------------------------------- /3d-boxes-background/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xprincedev/HTML-CSS-Training/HEAD/3d-boxes-background/style.css -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xprincedev/HTML-CSS-Training/HEAD/README.md -------------------------------------------------------------------------------- /_project_starter_/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xprincedev/HTML-CSS-Training/HEAD/_project_starter_/index.html -------------------------------------------------------------------------------- /_project_starter_/script.js: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /_project_starter_/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xprincedev/HTML-CSS-Training/HEAD/_project_starter_/style.css -------------------------------------------------------------------------------- /animated-countdown/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xprincedev/HTML-CSS-Training/HEAD/animated-countdown/index.html -------------------------------------------------------------------------------- /animated-countdown/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xprincedev/HTML-CSS-Training/HEAD/animated-countdown/script.js -------------------------------------------------------------------------------- /animated-countdown/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xprincedev/HTML-CSS-Training/HEAD/animated-countdown/style.css -------------------------------------------------------------------------------- /animated-navigation/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xprincedev/HTML-CSS-Training/HEAD/animated-navigation/index.html -------------------------------------------------------------------------------- /animated-navigation/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xprincedev/HTML-CSS-Training/HEAD/animated-navigation/script.js -------------------------------------------------------------------------------- /animated-navigation/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xprincedev/HTML-CSS-Training/HEAD/animated-navigation/style.css -------------------------------------------------------------------------------- /auto-text-effect/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xprincedev/HTML-CSS-Training/HEAD/auto-text-effect/index.html -------------------------------------------------------------------------------- /auto-text-effect/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xprincedev/HTML-CSS-Training/HEAD/auto-text-effect/script.js -------------------------------------------------------------------------------- /auto-text-effect/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xprincedev/HTML-CSS-Training/HEAD/auto-text-effect/style.css -------------------------------------------------------------------------------- /background-slider/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xprincedev/HTML-CSS-Training/HEAD/background-slider/index.html -------------------------------------------------------------------------------- /background-slider/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xprincedev/HTML-CSS-Training/HEAD/background-slider/script.js -------------------------------------------------------------------------------- /background-slider/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xprincedev/HTML-CSS-Training/HEAD/background-slider/style.css -------------------------------------------------------------------------------- /blurry-loading/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xprincedev/HTML-CSS-Training/HEAD/blurry-loading/index.html -------------------------------------------------------------------------------- /blurry-loading/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xprincedev/HTML-CSS-Training/HEAD/blurry-loading/script.js -------------------------------------------------------------------------------- /blurry-loading/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xprincedev/HTML-CSS-Training/HEAD/blurry-loading/style.css -------------------------------------------------------------------------------- /button-ripple-effect/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xprincedev/HTML-CSS-Training/HEAD/button-ripple-effect/index.html -------------------------------------------------------------------------------- /button-ripple-effect/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xprincedev/HTML-CSS-Training/HEAD/button-ripple-effect/script.js -------------------------------------------------------------------------------- /button-ripple-effect/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xprincedev/HTML-CSS-Training/HEAD/button-ripple-effect/style.css -------------------------------------------------------------------------------- /content-placeholder/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xprincedev/HTML-CSS-Training/HEAD/content-placeholder/index.html -------------------------------------------------------------------------------- /content-placeholder/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xprincedev/HTML-CSS-Training/HEAD/content-placeholder/script.js -------------------------------------------------------------------------------- /content-placeholder/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xprincedev/HTML-CSS-Training/HEAD/content-placeholder/style.css -------------------------------------------------------------------------------- /custom-range-slider/.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "liveServer.settings.port": 5501 3 | } -------------------------------------------------------------------------------- /custom-range-slider/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xprincedev/HTML-CSS-Training/HEAD/custom-range-slider/index.html -------------------------------------------------------------------------------- /custom-range-slider/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xprincedev/HTML-CSS-Training/HEAD/custom-range-slider/script.js -------------------------------------------------------------------------------- /custom-range-slider/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xprincedev/HTML-CSS-Training/HEAD/custom-range-slider/style.css -------------------------------------------------------------------------------- /dad-jokes/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xprincedev/HTML-CSS-Training/HEAD/dad-jokes/index.html -------------------------------------------------------------------------------- /dad-jokes/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xprincedev/HTML-CSS-Training/HEAD/dad-jokes/script.js -------------------------------------------------------------------------------- /dad-jokes/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xprincedev/HTML-CSS-Training/HEAD/dad-jokes/style.css -------------------------------------------------------------------------------- /double-click-heart/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xprincedev/HTML-CSS-Training/HEAD/double-click-heart/index.html -------------------------------------------------------------------------------- /double-click-heart/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xprincedev/HTML-CSS-Training/HEAD/double-click-heart/script.js -------------------------------------------------------------------------------- /double-click-heart/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xprincedev/HTML-CSS-Training/HEAD/double-click-heart/style.css -------------------------------------------------------------------------------- /double-vertical-slider/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xprincedev/HTML-CSS-Training/HEAD/double-vertical-slider/index.html -------------------------------------------------------------------------------- /double-vertical-slider/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xprincedev/HTML-CSS-Training/HEAD/double-vertical-slider/script.js -------------------------------------------------------------------------------- /double-vertical-slider/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xprincedev/HTML-CSS-Training/HEAD/double-vertical-slider/style.css -------------------------------------------------------------------------------- /drag-n-drop/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xprincedev/HTML-CSS-Training/HEAD/drag-n-drop/index.html -------------------------------------------------------------------------------- /drag-n-drop/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xprincedev/HTML-CSS-Training/HEAD/drag-n-drop/script.js -------------------------------------------------------------------------------- /drag-n-drop/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xprincedev/HTML-CSS-Training/HEAD/drag-n-drop/style.css -------------------------------------------------------------------------------- /drawing-app/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xprincedev/HTML-CSS-Training/HEAD/drawing-app/index.html -------------------------------------------------------------------------------- /drawing-app/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xprincedev/HTML-CSS-Training/HEAD/drawing-app/script.js -------------------------------------------------------------------------------- /drawing-app/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xprincedev/HTML-CSS-Training/HEAD/drawing-app/style.css -------------------------------------------------------------------------------- /drink-water/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xprincedev/HTML-CSS-Training/HEAD/drink-water/index.html -------------------------------------------------------------------------------- /drink-water/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xprincedev/HTML-CSS-Training/HEAD/drink-water/script.js -------------------------------------------------------------------------------- /drink-water/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xprincedev/HTML-CSS-Training/HEAD/drink-water/style.css -------------------------------------------------------------------------------- /event-keycodes/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xprincedev/HTML-CSS-Training/HEAD/event-keycodes/index.html -------------------------------------------------------------------------------- /event-keycodes/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xprincedev/HTML-CSS-Training/HEAD/event-keycodes/script.js -------------------------------------------------------------------------------- /event-keycodes/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xprincedev/HTML-CSS-Training/HEAD/event-keycodes/style.css -------------------------------------------------------------------------------- /expanding-cards/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xprincedev/HTML-CSS-Training/HEAD/expanding-cards/index.html -------------------------------------------------------------------------------- /expanding-cards/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xprincedev/HTML-CSS-Training/HEAD/expanding-cards/script.js -------------------------------------------------------------------------------- /expanding-cards/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xprincedev/HTML-CSS-Training/HEAD/expanding-cards/style.css -------------------------------------------------------------------------------- /faq-collapse/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xprincedev/HTML-CSS-Training/HEAD/faq-collapse/index.html -------------------------------------------------------------------------------- /faq-collapse/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xprincedev/HTML-CSS-Training/HEAD/faq-collapse/script.js -------------------------------------------------------------------------------- /faq-collapse/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xprincedev/HTML-CSS-Training/HEAD/faq-collapse/style.css -------------------------------------------------------------------------------- /feedback-ui-design/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xprincedev/HTML-CSS-Training/HEAD/feedback-ui-design/index.html -------------------------------------------------------------------------------- /feedback-ui-design/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xprincedev/HTML-CSS-Training/HEAD/feedback-ui-design/script.js -------------------------------------------------------------------------------- /feedback-ui-design/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xprincedev/HTML-CSS-Training/HEAD/feedback-ui-design/style.css -------------------------------------------------------------------------------- /form-input-wave/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xprincedev/HTML-CSS-Training/HEAD/form-input-wave/index.html -------------------------------------------------------------------------------- /form-input-wave/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xprincedev/HTML-CSS-Training/HEAD/form-input-wave/script.js -------------------------------------------------------------------------------- /form-input-wave/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xprincedev/HTML-CSS-Training/HEAD/form-input-wave/style.css -------------------------------------------------------------------------------- /github-profiles/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xprincedev/HTML-CSS-Training/HEAD/github-profiles/index.html -------------------------------------------------------------------------------- /github-profiles/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xprincedev/HTML-CSS-Training/HEAD/github-profiles/script.js -------------------------------------------------------------------------------- /github-profiles/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xprincedev/HTML-CSS-Training/HEAD/github-profiles/style.css -------------------------------------------------------------------------------- /good-cheap-fast/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xprincedev/HTML-CSS-Training/HEAD/good-cheap-fast/index.html -------------------------------------------------------------------------------- /good-cheap-fast/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xprincedev/HTML-CSS-Training/HEAD/good-cheap-fast/script.js -------------------------------------------------------------------------------- /good-cheap-fast/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xprincedev/HTML-CSS-Training/HEAD/good-cheap-fast/style.css -------------------------------------------------------------------------------- /hidden-search/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xprincedev/HTML-CSS-Training/HEAD/hidden-search/index.html -------------------------------------------------------------------------------- /hidden-search/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xprincedev/HTML-CSS-Training/HEAD/hidden-search/script.js -------------------------------------------------------------------------------- /hidden-search/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xprincedev/HTML-CSS-Training/HEAD/hidden-search/style.css -------------------------------------------------------------------------------- /hoverboard/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xprincedev/HTML-CSS-Training/HEAD/hoverboard/index.html -------------------------------------------------------------------------------- /hoverboard/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xprincedev/HTML-CSS-Training/HEAD/hoverboard/script.js -------------------------------------------------------------------------------- /hoverboard/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xprincedev/HTML-CSS-Training/HEAD/hoverboard/style.css -------------------------------------------------------------------------------- /image-carousel/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xprincedev/HTML-CSS-Training/HEAD/image-carousel/index.html -------------------------------------------------------------------------------- /image-carousel/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xprincedev/HTML-CSS-Training/HEAD/image-carousel/script.js -------------------------------------------------------------------------------- /image-carousel/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xprincedev/HTML-CSS-Training/HEAD/image-carousel/style.css -------------------------------------------------------------------------------- /incrementing-counter/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xprincedev/HTML-CSS-Training/HEAD/incrementing-counter/index.html -------------------------------------------------------------------------------- /incrementing-counter/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xprincedev/HTML-CSS-Training/HEAD/incrementing-counter/script.js -------------------------------------------------------------------------------- /incrementing-counter/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xprincedev/HTML-CSS-Training/HEAD/incrementing-counter/style.css -------------------------------------------------------------------------------- /insect-catch-game/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xprincedev/HTML-CSS-Training/HEAD/insect-catch-game/index.html -------------------------------------------------------------------------------- /insect-catch-game/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xprincedev/HTML-CSS-Training/HEAD/insect-catch-game/script.js -------------------------------------------------------------------------------- /insect-catch-game/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xprincedev/HTML-CSS-Training/HEAD/insect-catch-game/style.css -------------------------------------------------------------------------------- /kinetic-loader/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xprincedev/HTML-CSS-Training/HEAD/kinetic-loader/index.html -------------------------------------------------------------------------------- /kinetic-loader/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xprincedev/HTML-CSS-Training/HEAD/kinetic-loader/style.css -------------------------------------------------------------------------------- /live-user-filter/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xprincedev/HTML-CSS-Training/HEAD/live-user-filter/index.html -------------------------------------------------------------------------------- /live-user-filter/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xprincedev/HTML-CSS-Training/HEAD/live-user-filter/script.js -------------------------------------------------------------------------------- /live-user-filter/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xprincedev/HTML-CSS-Training/HEAD/live-user-filter/style.css -------------------------------------------------------------------------------- /mobile-tab-navigation/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xprincedev/HTML-CSS-Training/HEAD/mobile-tab-navigation/index.html -------------------------------------------------------------------------------- /mobile-tab-navigation/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xprincedev/HTML-CSS-Training/HEAD/mobile-tab-navigation/script.js -------------------------------------------------------------------------------- /mobile-tab-navigation/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xprincedev/HTML-CSS-Training/HEAD/mobile-tab-navigation/style.css -------------------------------------------------------------------------------- /movie-app/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xprincedev/HTML-CSS-Training/HEAD/movie-app/index.html -------------------------------------------------------------------------------- /movie-app/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xprincedev/HTML-CSS-Training/HEAD/movie-app/script.js -------------------------------------------------------------------------------- /movie-app/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xprincedev/HTML-CSS-Training/HEAD/movie-app/style.css -------------------------------------------------------------------------------- /netflix-mobile-navigation/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xprincedev/HTML-CSS-Training/HEAD/netflix-mobile-navigation/index.html -------------------------------------------------------------------------------- /netflix-mobile-navigation/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xprincedev/HTML-CSS-Training/HEAD/netflix-mobile-navigation/script.js -------------------------------------------------------------------------------- /netflix-mobile-navigation/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xprincedev/HTML-CSS-Training/HEAD/netflix-mobile-navigation/style.css -------------------------------------------------------------------------------- /notes-app/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xprincedev/HTML-CSS-Training/HEAD/notes-app/index.html -------------------------------------------------------------------------------- /notes-app/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xprincedev/HTML-CSS-Training/HEAD/notes-app/script.js -------------------------------------------------------------------------------- /notes-app/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xprincedev/HTML-CSS-Training/HEAD/notes-app/style.css -------------------------------------------------------------------------------- /password-generator/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xprincedev/HTML-CSS-Training/HEAD/password-generator/index.html -------------------------------------------------------------------------------- /password-generator/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xprincedev/HTML-CSS-Training/HEAD/password-generator/script.js -------------------------------------------------------------------------------- /password-generator/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xprincedev/HTML-CSS-Training/HEAD/password-generator/style.css -------------------------------------------------------------------------------- /password-strength-background/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xprincedev/HTML-CSS-Training/HEAD/password-strength-background/index.html -------------------------------------------------------------------------------- /password-strength-background/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xprincedev/HTML-CSS-Training/HEAD/password-strength-background/script.js -------------------------------------------------------------------------------- /password-strength-background/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xprincedev/HTML-CSS-Training/HEAD/password-strength-background/style.css -------------------------------------------------------------------------------- /pokedex/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xprincedev/HTML-CSS-Training/HEAD/pokedex/index.html -------------------------------------------------------------------------------- /pokedex/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xprincedev/HTML-CSS-Training/HEAD/pokedex/script.js -------------------------------------------------------------------------------- /pokedex/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xprincedev/HTML-CSS-Training/HEAD/pokedex/style.css -------------------------------------------------------------------------------- /progress-steps/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xprincedev/HTML-CSS-Training/HEAD/progress-steps/index.html -------------------------------------------------------------------------------- /progress-steps/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xprincedev/HTML-CSS-Training/HEAD/progress-steps/script.js -------------------------------------------------------------------------------- /progress-steps/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xprincedev/HTML-CSS-Training/HEAD/progress-steps/style.css -------------------------------------------------------------------------------- /quiz-app/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xprincedev/HTML-CSS-Training/HEAD/quiz-app/index.html -------------------------------------------------------------------------------- /quiz-app/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xprincedev/HTML-CSS-Training/HEAD/quiz-app/script.js -------------------------------------------------------------------------------- /quiz-app/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xprincedev/HTML-CSS-Training/HEAD/quiz-app/style.css -------------------------------------------------------------------------------- /random-choice-picker/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xprincedev/HTML-CSS-Training/HEAD/random-choice-picker/index.html -------------------------------------------------------------------------------- /random-choice-picker/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xprincedev/HTML-CSS-Training/HEAD/random-choice-picker/script.js -------------------------------------------------------------------------------- /random-choice-picker/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xprincedev/HTML-CSS-Training/HEAD/random-choice-picker/style.css -------------------------------------------------------------------------------- /random-image-generator/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xprincedev/HTML-CSS-Training/HEAD/random-image-generator/index.html -------------------------------------------------------------------------------- /random-image-generator/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xprincedev/HTML-CSS-Training/HEAD/random-image-generator/script.js -------------------------------------------------------------------------------- /random-image-generator/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xprincedev/HTML-CSS-Training/HEAD/random-image-generator/style.css -------------------------------------------------------------------------------- /rotating-nav-animation/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xprincedev/HTML-CSS-Training/HEAD/rotating-nav-animation/index.html -------------------------------------------------------------------------------- /rotating-nav-animation/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xprincedev/HTML-CSS-Training/HEAD/rotating-nav-animation/script.js -------------------------------------------------------------------------------- /rotating-nav-animation/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xprincedev/HTML-CSS-Training/HEAD/rotating-nav-animation/style.css -------------------------------------------------------------------------------- /scroll-animation/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xprincedev/HTML-CSS-Training/HEAD/scroll-animation/index.html -------------------------------------------------------------------------------- /scroll-animation/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xprincedev/HTML-CSS-Training/HEAD/scroll-animation/script.js -------------------------------------------------------------------------------- /scroll-animation/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xprincedev/HTML-CSS-Training/HEAD/scroll-animation/style.css -------------------------------------------------------------------------------- /sound-board/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xprincedev/HTML-CSS-Training/HEAD/sound-board/index.html -------------------------------------------------------------------------------- /sound-board/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xprincedev/HTML-CSS-Training/HEAD/sound-board/script.js -------------------------------------------------------------------------------- /sound-board/sounds/applause.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xprincedev/HTML-CSS-Training/HEAD/sound-board/sounds/applause.mp3 -------------------------------------------------------------------------------- /sound-board/sounds/boo.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xprincedev/HTML-CSS-Training/HEAD/sound-board/sounds/boo.mp3 -------------------------------------------------------------------------------- /sound-board/sounds/gasp.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xprincedev/HTML-CSS-Training/HEAD/sound-board/sounds/gasp.mp3 -------------------------------------------------------------------------------- /sound-board/sounds/tada.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xprincedev/HTML-CSS-Training/HEAD/sound-board/sounds/tada.mp3 -------------------------------------------------------------------------------- /sound-board/sounds/victory.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xprincedev/HTML-CSS-Training/HEAD/sound-board/sounds/victory.mp3 -------------------------------------------------------------------------------- /sound-board/sounds/wrong.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xprincedev/HTML-CSS-Training/HEAD/sound-board/sounds/wrong.mp3 -------------------------------------------------------------------------------- /sound-board/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xprincedev/HTML-CSS-Training/HEAD/sound-board/style.css -------------------------------------------------------------------------------- /split-landing-page/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xprincedev/HTML-CSS-Training/HEAD/split-landing-page/index.html -------------------------------------------------------------------------------- /split-landing-page/ps.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xprincedev/HTML-CSS-Training/HEAD/split-landing-page/ps.jpg -------------------------------------------------------------------------------- /split-landing-page/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xprincedev/HTML-CSS-Training/HEAD/split-landing-page/script.js -------------------------------------------------------------------------------- /split-landing-page/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xprincedev/HTML-CSS-Training/HEAD/split-landing-page/style.css -------------------------------------------------------------------------------- /split-landing-page/xbox.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xprincedev/HTML-CSS-Training/HEAD/split-landing-page/xbox.jpg -------------------------------------------------------------------------------- /sticky-navigation/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xprincedev/HTML-CSS-Training/HEAD/sticky-navigation/index.html -------------------------------------------------------------------------------- /sticky-navigation/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xprincedev/HTML-CSS-Training/HEAD/sticky-navigation/script.js -------------------------------------------------------------------------------- /sticky-navigation/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xprincedev/HTML-CSS-Training/HEAD/sticky-navigation/style.css -------------------------------------------------------------------------------- /testimonial-box-switcher/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xprincedev/HTML-CSS-Training/HEAD/testimonial-box-switcher/index.html -------------------------------------------------------------------------------- /testimonial-box-switcher/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xprincedev/HTML-CSS-Training/HEAD/testimonial-box-switcher/script.js -------------------------------------------------------------------------------- /testimonial-box-switcher/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xprincedev/HTML-CSS-Training/HEAD/testimonial-box-switcher/style.css -------------------------------------------------------------------------------- /theme-clock/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xprincedev/HTML-CSS-Training/HEAD/theme-clock/index.html -------------------------------------------------------------------------------- /theme-clock/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xprincedev/HTML-CSS-Training/HEAD/theme-clock/script.js -------------------------------------------------------------------------------- /theme-clock/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xprincedev/HTML-CSS-Training/HEAD/theme-clock/style.css -------------------------------------------------------------------------------- /toast-notification/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xprincedev/HTML-CSS-Training/HEAD/toast-notification/index.html -------------------------------------------------------------------------------- /toast-notification/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xprincedev/HTML-CSS-Training/HEAD/toast-notification/script.js -------------------------------------------------------------------------------- /toast-notification/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xprincedev/HTML-CSS-Training/HEAD/toast-notification/style.css -------------------------------------------------------------------------------- /todo-list/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xprincedev/HTML-CSS-Training/HEAD/todo-list/index.html -------------------------------------------------------------------------------- /todo-list/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xprincedev/HTML-CSS-Training/HEAD/todo-list/script.js -------------------------------------------------------------------------------- /todo-list/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xprincedev/HTML-CSS-Training/HEAD/todo-list/style.css -------------------------------------------------------------------------------- /verify-account-ui/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xprincedev/HTML-CSS-Training/HEAD/verify-account-ui/index.html -------------------------------------------------------------------------------- /verify-account-ui/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xprincedev/HTML-CSS-Training/HEAD/verify-account-ui/script.js -------------------------------------------------------------------------------- /verify-account-ui/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xprincedev/HTML-CSS-Training/HEAD/verify-account-ui/style.css --------------------------------------------------------------------------------