├── .github └── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── challenge.md │ ├── feature_request.md │ └── question.md ├── CODE_OF_CONDUCT.md ├── README.md ├── examples ├── Faq │ ├── README.md │ ├── dist │ │ ├── assets │ │ │ ├── minus-icon.svg │ │ │ ├── plus-icon.svg │ │ │ └── projectSnapshot.png │ │ ├── index.html │ │ ├── scripts │ │ │ ├── functions.js │ │ │ └── script.js │ │ └── styles │ │ │ └── style.css │ └── src │ │ └── sass │ │ ├── _reset.scss │ │ └── style.scss ├── Progress Steps │ ├── dist │ │ ├── index.html │ │ ├── projectSnapshot.png │ │ ├── script.js │ │ └── style.css │ └── readme.md ├── README.md ├── agePredictor │ ├── .gitignore │ ├── .vscode │ │ └── settings.json │ ├── README.md │ ├── dist │ │ ├── assets │ │ │ └── images │ │ │ │ ├── 404.svg │ │ │ │ ├── chevron.svg │ │ │ │ ├── footer-icons │ │ │ │ ├── github.svg │ │ │ │ ├── hackerrank.svg │ │ │ │ ├── heart.svg │ │ │ │ ├── leetcode.svg │ │ │ │ └── linkedin.svg │ │ │ │ ├── imgSource │ │ │ │ ├── baby-1.webp │ │ │ │ ├── baby-10.webp │ │ │ │ ├── baby-2.webp │ │ │ │ ├── baby-3.webp │ │ │ │ ├── baby-4.webp │ │ │ │ ├── baby-5.webp │ │ │ │ ├── baby-6.webp │ │ │ │ ├── baby-7.webp │ │ │ │ ├── baby-8.webp │ │ │ │ ├── baby-9.webp │ │ │ │ ├── cat-1.webp │ │ │ │ ├── cat-10.webp │ │ │ │ ├── cat-11.webp │ │ │ │ ├── cat-12.webp │ │ │ │ ├── cat-13.webp │ │ │ │ ├── cat-2.webp │ │ │ │ ├── cat-3.webp │ │ │ │ ├── cat-4.webp │ │ │ │ ├── cat-5.webp │ │ │ │ ├── cat-6.webp │ │ │ │ ├── cat-7.webp │ │ │ │ ├── cat-8.webp │ │ │ │ ├── cat-9.webp │ │ │ │ ├── panda-1.webp │ │ │ │ ├── panda-2.webp │ │ │ │ ├── puppy-1.webp │ │ │ │ ├── puppy-2.webp │ │ │ │ ├── puppy-3.webp │ │ │ │ ├── puppy-4.webp │ │ │ │ ├── squirrel-1.webp │ │ │ │ ├── squirrel-10.webp │ │ │ │ ├── squirrel-11.webp │ │ │ │ ├── squirrel-2.webp │ │ │ │ ├── squirrel-3.webp │ │ │ │ ├── squirrel-4.webp │ │ │ │ ├── squirrel-5.webp │ │ │ │ ├── squirrel-6.webp │ │ │ │ ├── squirrel-7.webp │ │ │ │ ├── squirrel-8.webp │ │ │ │ └── squirrel-9.webp │ │ │ │ ├── minimalisticMoc@HD.png │ │ │ │ ├── question.svg │ │ │ │ ├── squirel.jpg │ │ │ │ ├── squirrel.png │ │ │ │ ├── squirrel.svg │ │ │ │ └── tick.svg │ │ ├── ftp.min.js │ │ ├── index.html │ │ ├── js │ │ │ └── app.179.js │ │ └── styles │ │ │ └── style.min.css │ ├── package-lock.json │ ├── package.json │ ├── src │ │ ├── sass │ │ │ ├── _animation.scss │ │ │ ├── _graph.scss │ │ │ ├── _mediaq.scss │ │ │ └── style.scss │ │ └── scripts │ │ │ ├── app.js │ │ │ ├── confetti.min.js │ │ │ ├── functions.js │ │ │ └── object.js │ └── webpack.config.js ├── background-color-changer │ ├── README.md │ ├── app.js │ ├── favicon.png │ ├── index.html │ ├── screenshot.png │ └── style.css ├── basic-calculator │ ├── README.md │ ├── app.js │ ├── css │ │ └── style.css │ ├── images │ │ ├── calc-ui.PNG │ │ ├── files.PNG │ │ └── output.PNG │ └── index.html ├── budget-planner │ ├── README.md │ ├── app.js │ ├── index.html │ ├── package.json │ └── screenshots │ │ ├── Screenshot_1.png │ │ ├── Screenshot_2.png │ │ ├── Screenshot_3.png │ │ ├── Screenshot_4.png │ │ ├── Screenshot_5.png │ │ ├── Screenshot_6.png │ │ └── Screenshot_7.png ├── counter │ ├── README.md │ ├── images │ │ ├── minus.png │ │ ├── plus.png │ │ └── ui.PNG │ ├── index.html │ ├── index.js │ ├── package.json │ └── style.css ├── course_buying_cart │ ├── README.md │ ├── css │ │ ├── custom.css │ │ ├── normalize.css │ │ └── skeleton.css │ ├── img │ │ ├── carded.png │ │ ├── cart.png │ │ ├── course1.jpg │ │ ├── course2.jpg │ │ ├── course3.jpg │ │ ├── course4.jpg │ │ ├── course5.jpg │ │ ├── courses.png │ │ ├── emptyCard.png │ │ ├── hero.jpg │ │ ├── icon1.png │ │ ├── icon2.png │ │ ├── icon3.png │ │ ├── logo.jpg │ │ ├── mglass.png │ │ └── stars.png │ ├── index.html │ └── js │ │ └── app.js ├── love_calculator │ ├── README.md │ ├── assets │ │ ├── logo.png │ │ ├── screenshot-mobile.png │ │ └── screenshot.png │ ├── css │ │ └── style.css │ ├── index.html │ └── scripts │ │ └── script.js ├── luck-Rolling │ ├── .gitignore │ ├── dist │ │ ├── assets │ │ │ ├── backgrounds │ │ │ │ ├── accent-background.svg │ │ │ │ ├── primary-background.svg │ │ │ │ └── success-background.svg │ │ │ ├── dices │ │ │ │ ├── default.jpg │ │ │ │ ├── dice-1.png │ │ │ │ ├── dice-2.png │ │ │ │ ├── dice-3.png │ │ │ │ ├── dice-4.png │ │ │ │ ├── dice-5.png │ │ │ │ └── dice-6.png │ │ │ ├── frameMac.png │ │ │ └── icons │ │ │ │ ├── dice-icon.svg │ │ │ │ ├── gethelp-icon.svg │ │ │ │ ├── heart.svg │ │ │ │ ├── hold-icon.svg │ │ │ │ └── newgame-icon.svg │ │ ├── index.html │ │ ├── scripts │ │ │ └── app.179.js │ │ └── styles │ │ │ └── style.min.css │ ├── package-lock.json │ ├── package.json │ ├── readme.md │ ├── src │ │ ├── sass │ │ │ ├── _animation.scss │ │ │ ├── _modalwindow.scss │ │ │ ├── _reset.scss │ │ │ └── style.scss │ │ └── scripts │ │ │ ├── script.js │ │ │ └── utils.js │ └── webpack.config.js ├── mini-converter-app │ ├── README.md │ ├── app.js │ ├── css │ │ └── style.css │ ├── images │ │ ├── UI.PNG │ │ ├── folder-structure.PNG │ │ └── sample-output.PNG │ ├── index.html │ └── package.json ├── note-taker │ ├── Css │ │ ├── bootstrap.css │ │ ├── bootstrap.css.map │ │ └── style.css │ ├── Js │ │ ├── app.js │ │ ├── bootstrap.js │ │ ├── bootstrap.js.map │ │ └── jquery-3.5.1.slim.min.js │ ├── README.md │ ├── index.html │ └── screenshots │ │ ├── Screenshot_1.jpg │ │ ├── Screenshot_2.jpg │ │ └── Screenshot_3.jpg ├── tipCalculator │ ├── README.md │ ├── css │ │ ├── style.css │ │ └── style.scss │ ├── design │ │ ├── screenshot-desktop.jpg │ │ └── screenshot-mobile.jpg │ ├── images │ │ ├── favicon-32x32.png │ │ ├── icon-dollar.svg │ │ ├── icon-person.svg │ │ └── logo.svg │ ├── index.html │ └── js │ │ └── script.js └── touch-me-game │ ├── README.md │ ├── css │ ├── style.css │ └── style.scss │ ├── img │ └── touch-me.png │ ├── index.html │ ├── js │ └── script.js │ └── screenshots │ ├── screenshot-1.png │ └── screenshot-2.png └── src ├── project-1 ├── app.js ├── index.html ├── project-1.1 │ ├── app.js │ ├── index.html │ └── style.css ├── project-1.2 │ ├── app.js │ ├── index.html │ └── style.css └── style.css ├── project-10 ├── app.js ├── copy-sound.wav ├── index.html └── style.css ├── project-11 ├── app.js ├── copy-sound.wav ├── index.html └── style.css ├── project-12 ├── app.js ├── copy-sound.wav ├── index.html └── style.css ├── project-14 ├── app.js ├── index.html └── style.css ├── project-15 ├── app.js ├── copy-sound.wav ├── index.html └── style.css ├── project-16 ├── index.html ├── index.js ├── quotes-api.js └── style.css ├── project-2 ├── app.js ├── index.html └── style.css ├── project-3 ├── app.js ├── index.html └── style.css ├── project-4 ├── app.js ├── index.html └── style.css ├── project-5 ├── app.js ├── index.html └── style.css ├── project-6 ├── app.js ├── index.html └── style.css ├── project-7 ├── app.js ├── index.html └── style.css ├── project-8 ├── app.js ├── index.html └── style.css └── project-9 ├── app.js ├── index.html └── style.css /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhm-dev/100-plus-dom-projects/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/challenge.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhm-dev/100-plus-dom-projects/HEAD/.github/ISSUE_TEMPLATE/challenge.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhm-dev/100-plus-dom-projects/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/question.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhm-dev/100-plus-dom-projects/HEAD/.github/ISSUE_TEMPLATE/question.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhm-dev/100-plus-dom-projects/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhm-dev/100-plus-dom-projects/HEAD/README.md -------------------------------------------------------------------------------- /examples/Faq/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhm-dev/100-plus-dom-projects/HEAD/examples/Faq/README.md -------------------------------------------------------------------------------- /examples/Faq/dist/assets/minus-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhm-dev/100-plus-dom-projects/HEAD/examples/Faq/dist/assets/minus-icon.svg -------------------------------------------------------------------------------- /examples/Faq/dist/assets/plus-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhm-dev/100-plus-dom-projects/HEAD/examples/Faq/dist/assets/plus-icon.svg -------------------------------------------------------------------------------- /examples/Faq/dist/assets/projectSnapshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhm-dev/100-plus-dom-projects/HEAD/examples/Faq/dist/assets/projectSnapshot.png -------------------------------------------------------------------------------- /examples/Faq/dist/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhm-dev/100-plus-dom-projects/HEAD/examples/Faq/dist/index.html -------------------------------------------------------------------------------- /examples/Faq/dist/scripts/functions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhm-dev/100-plus-dom-projects/HEAD/examples/Faq/dist/scripts/functions.js -------------------------------------------------------------------------------- /examples/Faq/dist/scripts/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhm-dev/100-plus-dom-projects/HEAD/examples/Faq/dist/scripts/script.js -------------------------------------------------------------------------------- /examples/Faq/dist/styles/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhm-dev/100-plus-dom-projects/HEAD/examples/Faq/dist/styles/style.css -------------------------------------------------------------------------------- /examples/Faq/src/sass/_reset.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhm-dev/100-plus-dom-projects/HEAD/examples/Faq/src/sass/_reset.scss -------------------------------------------------------------------------------- /examples/Faq/src/sass/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhm-dev/100-plus-dom-projects/HEAD/examples/Faq/src/sass/style.scss -------------------------------------------------------------------------------- /examples/Progress Steps/dist/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhm-dev/100-plus-dom-projects/HEAD/examples/Progress Steps/dist/index.html -------------------------------------------------------------------------------- /examples/Progress Steps/dist/projectSnapshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhm-dev/100-plus-dom-projects/HEAD/examples/Progress Steps/dist/projectSnapshot.png -------------------------------------------------------------------------------- /examples/Progress Steps/dist/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhm-dev/100-plus-dom-projects/HEAD/examples/Progress Steps/dist/script.js -------------------------------------------------------------------------------- /examples/Progress Steps/dist/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhm-dev/100-plus-dom-projects/HEAD/examples/Progress Steps/dist/style.css -------------------------------------------------------------------------------- /examples/Progress Steps/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhm-dev/100-plus-dom-projects/HEAD/examples/Progress Steps/readme.md -------------------------------------------------------------------------------- /examples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhm-dev/100-plus-dom-projects/HEAD/examples/README.md -------------------------------------------------------------------------------- /examples/agePredictor/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules -------------------------------------------------------------------------------- /examples/agePredictor/.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "liveServer.settings.port": 5501 3 | } 4 | -------------------------------------------------------------------------------- /examples/agePredictor/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhm-dev/100-plus-dom-projects/HEAD/examples/agePredictor/README.md -------------------------------------------------------------------------------- /examples/agePredictor/dist/assets/images/404.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhm-dev/100-plus-dom-projects/HEAD/examples/agePredictor/dist/assets/images/404.svg -------------------------------------------------------------------------------- /examples/agePredictor/dist/assets/images/chevron.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhm-dev/100-plus-dom-projects/HEAD/examples/agePredictor/dist/assets/images/chevron.svg -------------------------------------------------------------------------------- /examples/agePredictor/dist/assets/images/footer-icons/github.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhm-dev/100-plus-dom-projects/HEAD/examples/agePredictor/dist/assets/images/footer-icons/github.svg -------------------------------------------------------------------------------- /examples/agePredictor/dist/assets/images/footer-icons/hackerrank.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhm-dev/100-plus-dom-projects/HEAD/examples/agePredictor/dist/assets/images/footer-icons/hackerrank.svg -------------------------------------------------------------------------------- /examples/agePredictor/dist/assets/images/footer-icons/heart.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhm-dev/100-plus-dom-projects/HEAD/examples/agePredictor/dist/assets/images/footer-icons/heart.svg -------------------------------------------------------------------------------- /examples/agePredictor/dist/assets/images/footer-icons/leetcode.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhm-dev/100-plus-dom-projects/HEAD/examples/agePredictor/dist/assets/images/footer-icons/leetcode.svg -------------------------------------------------------------------------------- /examples/agePredictor/dist/assets/images/footer-icons/linkedin.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhm-dev/100-plus-dom-projects/HEAD/examples/agePredictor/dist/assets/images/footer-icons/linkedin.svg -------------------------------------------------------------------------------- /examples/agePredictor/dist/assets/images/imgSource/baby-1.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhm-dev/100-plus-dom-projects/HEAD/examples/agePredictor/dist/assets/images/imgSource/baby-1.webp -------------------------------------------------------------------------------- /examples/agePredictor/dist/assets/images/imgSource/baby-10.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhm-dev/100-plus-dom-projects/HEAD/examples/agePredictor/dist/assets/images/imgSource/baby-10.webp -------------------------------------------------------------------------------- /examples/agePredictor/dist/assets/images/imgSource/baby-2.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhm-dev/100-plus-dom-projects/HEAD/examples/agePredictor/dist/assets/images/imgSource/baby-2.webp -------------------------------------------------------------------------------- /examples/agePredictor/dist/assets/images/imgSource/baby-3.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhm-dev/100-plus-dom-projects/HEAD/examples/agePredictor/dist/assets/images/imgSource/baby-3.webp -------------------------------------------------------------------------------- /examples/agePredictor/dist/assets/images/imgSource/baby-4.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhm-dev/100-plus-dom-projects/HEAD/examples/agePredictor/dist/assets/images/imgSource/baby-4.webp -------------------------------------------------------------------------------- /examples/agePredictor/dist/assets/images/imgSource/baby-5.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhm-dev/100-plus-dom-projects/HEAD/examples/agePredictor/dist/assets/images/imgSource/baby-5.webp -------------------------------------------------------------------------------- /examples/agePredictor/dist/assets/images/imgSource/baby-6.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhm-dev/100-plus-dom-projects/HEAD/examples/agePredictor/dist/assets/images/imgSource/baby-6.webp -------------------------------------------------------------------------------- /examples/agePredictor/dist/assets/images/imgSource/baby-7.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhm-dev/100-plus-dom-projects/HEAD/examples/agePredictor/dist/assets/images/imgSource/baby-7.webp -------------------------------------------------------------------------------- /examples/agePredictor/dist/assets/images/imgSource/baby-8.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhm-dev/100-plus-dom-projects/HEAD/examples/agePredictor/dist/assets/images/imgSource/baby-8.webp -------------------------------------------------------------------------------- /examples/agePredictor/dist/assets/images/imgSource/baby-9.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhm-dev/100-plus-dom-projects/HEAD/examples/agePredictor/dist/assets/images/imgSource/baby-9.webp -------------------------------------------------------------------------------- /examples/agePredictor/dist/assets/images/imgSource/cat-1.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhm-dev/100-plus-dom-projects/HEAD/examples/agePredictor/dist/assets/images/imgSource/cat-1.webp -------------------------------------------------------------------------------- /examples/agePredictor/dist/assets/images/imgSource/cat-10.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhm-dev/100-plus-dom-projects/HEAD/examples/agePredictor/dist/assets/images/imgSource/cat-10.webp -------------------------------------------------------------------------------- /examples/agePredictor/dist/assets/images/imgSource/cat-11.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhm-dev/100-plus-dom-projects/HEAD/examples/agePredictor/dist/assets/images/imgSource/cat-11.webp -------------------------------------------------------------------------------- /examples/agePredictor/dist/assets/images/imgSource/cat-12.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhm-dev/100-plus-dom-projects/HEAD/examples/agePredictor/dist/assets/images/imgSource/cat-12.webp -------------------------------------------------------------------------------- /examples/agePredictor/dist/assets/images/imgSource/cat-13.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhm-dev/100-plus-dom-projects/HEAD/examples/agePredictor/dist/assets/images/imgSource/cat-13.webp -------------------------------------------------------------------------------- /examples/agePredictor/dist/assets/images/imgSource/cat-2.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhm-dev/100-plus-dom-projects/HEAD/examples/agePredictor/dist/assets/images/imgSource/cat-2.webp -------------------------------------------------------------------------------- /examples/agePredictor/dist/assets/images/imgSource/cat-3.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhm-dev/100-plus-dom-projects/HEAD/examples/agePredictor/dist/assets/images/imgSource/cat-3.webp -------------------------------------------------------------------------------- /examples/agePredictor/dist/assets/images/imgSource/cat-4.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhm-dev/100-plus-dom-projects/HEAD/examples/agePredictor/dist/assets/images/imgSource/cat-4.webp -------------------------------------------------------------------------------- /examples/agePredictor/dist/assets/images/imgSource/cat-5.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhm-dev/100-plus-dom-projects/HEAD/examples/agePredictor/dist/assets/images/imgSource/cat-5.webp -------------------------------------------------------------------------------- /examples/agePredictor/dist/assets/images/imgSource/cat-6.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhm-dev/100-plus-dom-projects/HEAD/examples/agePredictor/dist/assets/images/imgSource/cat-6.webp -------------------------------------------------------------------------------- /examples/agePredictor/dist/assets/images/imgSource/cat-7.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhm-dev/100-plus-dom-projects/HEAD/examples/agePredictor/dist/assets/images/imgSource/cat-7.webp -------------------------------------------------------------------------------- /examples/agePredictor/dist/assets/images/imgSource/cat-8.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhm-dev/100-plus-dom-projects/HEAD/examples/agePredictor/dist/assets/images/imgSource/cat-8.webp -------------------------------------------------------------------------------- /examples/agePredictor/dist/assets/images/imgSource/cat-9.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhm-dev/100-plus-dom-projects/HEAD/examples/agePredictor/dist/assets/images/imgSource/cat-9.webp -------------------------------------------------------------------------------- /examples/agePredictor/dist/assets/images/imgSource/panda-1.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhm-dev/100-plus-dom-projects/HEAD/examples/agePredictor/dist/assets/images/imgSource/panda-1.webp -------------------------------------------------------------------------------- /examples/agePredictor/dist/assets/images/imgSource/panda-2.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhm-dev/100-plus-dom-projects/HEAD/examples/agePredictor/dist/assets/images/imgSource/panda-2.webp -------------------------------------------------------------------------------- /examples/agePredictor/dist/assets/images/imgSource/puppy-1.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhm-dev/100-plus-dom-projects/HEAD/examples/agePredictor/dist/assets/images/imgSource/puppy-1.webp -------------------------------------------------------------------------------- /examples/agePredictor/dist/assets/images/imgSource/puppy-2.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhm-dev/100-plus-dom-projects/HEAD/examples/agePredictor/dist/assets/images/imgSource/puppy-2.webp -------------------------------------------------------------------------------- /examples/agePredictor/dist/assets/images/imgSource/puppy-3.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhm-dev/100-plus-dom-projects/HEAD/examples/agePredictor/dist/assets/images/imgSource/puppy-3.webp -------------------------------------------------------------------------------- /examples/agePredictor/dist/assets/images/imgSource/puppy-4.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhm-dev/100-plus-dom-projects/HEAD/examples/agePredictor/dist/assets/images/imgSource/puppy-4.webp -------------------------------------------------------------------------------- /examples/agePredictor/dist/assets/images/imgSource/squirrel-1.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhm-dev/100-plus-dom-projects/HEAD/examples/agePredictor/dist/assets/images/imgSource/squirrel-1.webp -------------------------------------------------------------------------------- /examples/agePredictor/dist/assets/images/imgSource/squirrel-10.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhm-dev/100-plus-dom-projects/HEAD/examples/agePredictor/dist/assets/images/imgSource/squirrel-10.webp -------------------------------------------------------------------------------- /examples/agePredictor/dist/assets/images/imgSource/squirrel-11.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhm-dev/100-plus-dom-projects/HEAD/examples/agePredictor/dist/assets/images/imgSource/squirrel-11.webp -------------------------------------------------------------------------------- /examples/agePredictor/dist/assets/images/imgSource/squirrel-2.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhm-dev/100-plus-dom-projects/HEAD/examples/agePredictor/dist/assets/images/imgSource/squirrel-2.webp -------------------------------------------------------------------------------- /examples/agePredictor/dist/assets/images/imgSource/squirrel-3.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhm-dev/100-plus-dom-projects/HEAD/examples/agePredictor/dist/assets/images/imgSource/squirrel-3.webp -------------------------------------------------------------------------------- /examples/agePredictor/dist/assets/images/imgSource/squirrel-4.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhm-dev/100-plus-dom-projects/HEAD/examples/agePredictor/dist/assets/images/imgSource/squirrel-4.webp -------------------------------------------------------------------------------- /examples/agePredictor/dist/assets/images/imgSource/squirrel-5.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhm-dev/100-plus-dom-projects/HEAD/examples/agePredictor/dist/assets/images/imgSource/squirrel-5.webp -------------------------------------------------------------------------------- /examples/agePredictor/dist/assets/images/imgSource/squirrel-6.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhm-dev/100-plus-dom-projects/HEAD/examples/agePredictor/dist/assets/images/imgSource/squirrel-6.webp -------------------------------------------------------------------------------- /examples/agePredictor/dist/assets/images/imgSource/squirrel-7.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhm-dev/100-plus-dom-projects/HEAD/examples/agePredictor/dist/assets/images/imgSource/squirrel-7.webp -------------------------------------------------------------------------------- /examples/agePredictor/dist/assets/images/imgSource/squirrel-8.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhm-dev/100-plus-dom-projects/HEAD/examples/agePredictor/dist/assets/images/imgSource/squirrel-8.webp -------------------------------------------------------------------------------- /examples/agePredictor/dist/assets/images/imgSource/squirrel-9.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhm-dev/100-plus-dom-projects/HEAD/examples/agePredictor/dist/assets/images/imgSource/squirrel-9.webp -------------------------------------------------------------------------------- /examples/agePredictor/dist/assets/images/minimalisticMoc@HD.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhm-dev/100-plus-dom-projects/HEAD/examples/agePredictor/dist/assets/images/minimalisticMoc@HD.png -------------------------------------------------------------------------------- /examples/agePredictor/dist/assets/images/question.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhm-dev/100-plus-dom-projects/HEAD/examples/agePredictor/dist/assets/images/question.svg -------------------------------------------------------------------------------- /examples/agePredictor/dist/assets/images/squirel.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhm-dev/100-plus-dom-projects/HEAD/examples/agePredictor/dist/assets/images/squirel.jpg -------------------------------------------------------------------------------- /examples/agePredictor/dist/assets/images/squirrel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhm-dev/100-plus-dom-projects/HEAD/examples/agePredictor/dist/assets/images/squirrel.png -------------------------------------------------------------------------------- /examples/agePredictor/dist/assets/images/squirrel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhm-dev/100-plus-dom-projects/HEAD/examples/agePredictor/dist/assets/images/squirrel.svg -------------------------------------------------------------------------------- /examples/agePredictor/dist/assets/images/tick.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhm-dev/100-plus-dom-projects/HEAD/examples/agePredictor/dist/assets/images/tick.svg -------------------------------------------------------------------------------- /examples/agePredictor/dist/ftp.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhm-dev/100-plus-dom-projects/HEAD/examples/agePredictor/dist/ftp.min.js -------------------------------------------------------------------------------- /examples/agePredictor/dist/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhm-dev/100-plus-dom-projects/HEAD/examples/agePredictor/dist/index.html -------------------------------------------------------------------------------- /examples/agePredictor/dist/js/app.179.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhm-dev/100-plus-dom-projects/HEAD/examples/agePredictor/dist/js/app.179.js -------------------------------------------------------------------------------- /examples/agePredictor/dist/styles/style.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhm-dev/100-plus-dom-projects/HEAD/examples/agePredictor/dist/styles/style.min.css -------------------------------------------------------------------------------- /examples/agePredictor/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhm-dev/100-plus-dom-projects/HEAD/examples/agePredictor/package-lock.json -------------------------------------------------------------------------------- /examples/agePredictor/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhm-dev/100-plus-dom-projects/HEAD/examples/agePredictor/package.json -------------------------------------------------------------------------------- /examples/agePredictor/src/sass/_animation.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhm-dev/100-plus-dom-projects/HEAD/examples/agePredictor/src/sass/_animation.scss -------------------------------------------------------------------------------- /examples/agePredictor/src/sass/_graph.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhm-dev/100-plus-dom-projects/HEAD/examples/agePredictor/src/sass/_graph.scss -------------------------------------------------------------------------------- /examples/agePredictor/src/sass/_mediaq.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhm-dev/100-plus-dom-projects/HEAD/examples/agePredictor/src/sass/_mediaq.scss -------------------------------------------------------------------------------- /examples/agePredictor/src/sass/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhm-dev/100-plus-dom-projects/HEAD/examples/agePredictor/src/sass/style.scss -------------------------------------------------------------------------------- /examples/agePredictor/src/scripts/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhm-dev/100-plus-dom-projects/HEAD/examples/agePredictor/src/scripts/app.js -------------------------------------------------------------------------------- /examples/agePredictor/src/scripts/confetti.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhm-dev/100-plus-dom-projects/HEAD/examples/agePredictor/src/scripts/confetti.min.js -------------------------------------------------------------------------------- /examples/agePredictor/src/scripts/functions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhm-dev/100-plus-dom-projects/HEAD/examples/agePredictor/src/scripts/functions.js -------------------------------------------------------------------------------- /examples/agePredictor/src/scripts/object.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhm-dev/100-plus-dom-projects/HEAD/examples/agePredictor/src/scripts/object.js -------------------------------------------------------------------------------- /examples/agePredictor/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhm-dev/100-plus-dom-projects/HEAD/examples/agePredictor/webpack.config.js -------------------------------------------------------------------------------- /examples/background-color-changer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhm-dev/100-plus-dom-projects/HEAD/examples/background-color-changer/README.md -------------------------------------------------------------------------------- /examples/background-color-changer/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhm-dev/100-plus-dom-projects/HEAD/examples/background-color-changer/app.js -------------------------------------------------------------------------------- /examples/background-color-changer/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhm-dev/100-plus-dom-projects/HEAD/examples/background-color-changer/favicon.png -------------------------------------------------------------------------------- /examples/background-color-changer/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhm-dev/100-plus-dom-projects/HEAD/examples/background-color-changer/index.html -------------------------------------------------------------------------------- /examples/background-color-changer/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhm-dev/100-plus-dom-projects/HEAD/examples/background-color-changer/screenshot.png -------------------------------------------------------------------------------- /examples/background-color-changer/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhm-dev/100-plus-dom-projects/HEAD/examples/background-color-changer/style.css -------------------------------------------------------------------------------- /examples/basic-calculator/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhm-dev/100-plus-dom-projects/HEAD/examples/basic-calculator/README.md -------------------------------------------------------------------------------- /examples/basic-calculator/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhm-dev/100-plus-dom-projects/HEAD/examples/basic-calculator/app.js -------------------------------------------------------------------------------- /examples/basic-calculator/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhm-dev/100-plus-dom-projects/HEAD/examples/basic-calculator/css/style.css -------------------------------------------------------------------------------- /examples/basic-calculator/images/calc-ui.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhm-dev/100-plus-dom-projects/HEAD/examples/basic-calculator/images/calc-ui.PNG -------------------------------------------------------------------------------- /examples/basic-calculator/images/files.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhm-dev/100-plus-dom-projects/HEAD/examples/basic-calculator/images/files.PNG -------------------------------------------------------------------------------- /examples/basic-calculator/images/output.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhm-dev/100-plus-dom-projects/HEAD/examples/basic-calculator/images/output.PNG -------------------------------------------------------------------------------- /examples/basic-calculator/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhm-dev/100-plus-dom-projects/HEAD/examples/basic-calculator/index.html -------------------------------------------------------------------------------- /examples/budget-planner/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhm-dev/100-plus-dom-projects/HEAD/examples/budget-planner/README.md -------------------------------------------------------------------------------- /examples/budget-planner/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhm-dev/100-plus-dom-projects/HEAD/examples/budget-planner/app.js -------------------------------------------------------------------------------- /examples/budget-planner/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhm-dev/100-plus-dom-projects/HEAD/examples/budget-planner/index.html -------------------------------------------------------------------------------- /examples/budget-planner/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhm-dev/100-plus-dom-projects/HEAD/examples/budget-planner/package.json -------------------------------------------------------------------------------- /examples/budget-planner/screenshots/Screenshot_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhm-dev/100-plus-dom-projects/HEAD/examples/budget-planner/screenshots/Screenshot_1.png -------------------------------------------------------------------------------- /examples/budget-planner/screenshots/Screenshot_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhm-dev/100-plus-dom-projects/HEAD/examples/budget-planner/screenshots/Screenshot_2.png -------------------------------------------------------------------------------- /examples/budget-planner/screenshots/Screenshot_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhm-dev/100-plus-dom-projects/HEAD/examples/budget-planner/screenshots/Screenshot_3.png -------------------------------------------------------------------------------- /examples/budget-planner/screenshots/Screenshot_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhm-dev/100-plus-dom-projects/HEAD/examples/budget-planner/screenshots/Screenshot_4.png -------------------------------------------------------------------------------- /examples/budget-planner/screenshots/Screenshot_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhm-dev/100-plus-dom-projects/HEAD/examples/budget-planner/screenshots/Screenshot_5.png -------------------------------------------------------------------------------- /examples/budget-planner/screenshots/Screenshot_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhm-dev/100-plus-dom-projects/HEAD/examples/budget-planner/screenshots/Screenshot_6.png -------------------------------------------------------------------------------- /examples/budget-planner/screenshots/Screenshot_7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhm-dev/100-plus-dom-projects/HEAD/examples/budget-planner/screenshots/Screenshot_7.png -------------------------------------------------------------------------------- /examples/counter/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhm-dev/100-plus-dom-projects/HEAD/examples/counter/README.md -------------------------------------------------------------------------------- /examples/counter/images/minus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhm-dev/100-plus-dom-projects/HEAD/examples/counter/images/minus.png -------------------------------------------------------------------------------- /examples/counter/images/plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhm-dev/100-plus-dom-projects/HEAD/examples/counter/images/plus.png -------------------------------------------------------------------------------- /examples/counter/images/ui.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhm-dev/100-plus-dom-projects/HEAD/examples/counter/images/ui.PNG -------------------------------------------------------------------------------- /examples/counter/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhm-dev/100-plus-dom-projects/HEAD/examples/counter/index.html -------------------------------------------------------------------------------- /examples/counter/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhm-dev/100-plus-dom-projects/HEAD/examples/counter/index.js -------------------------------------------------------------------------------- /examples/counter/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhm-dev/100-plus-dom-projects/HEAD/examples/counter/package.json -------------------------------------------------------------------------------- /examples/counter/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhm-dev/100-plus-dom-projects/HEAD/examples/counter/style.css -------------------------------------------------------------------------------- /examples/course_buying_cart/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhm-dev/100-plus-dom-projects/HEAD/examples/course_buying_cart/README.md -------------------------------------------------------------------------------- /examples/course_buying_cart/css/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhm-dev/100-plus-dom-projects/HEAD/examples/course_buying_cart/css/custom.css -------------------------------------------------------------------------------- /examples/course_buying_cart/css/normalize.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhm-dev/100-plus-dom-projects/HEAD/examples/course_buying_cart/css/normalize.css -------------------------------------------------------------------------------- /examples/course_buying_cart/css/skeleton.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhm-dev/100-plus-dom-projects/HEAD/examples/course_buying_cart/css/skeleton.css -------------------------------------------------------------------------------- /examples/course_buying_cart/img/carded.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhm-dev/100-plus-dom-projects/HEAD/examples/course_buying_cart/img/carded.png -------------------------------------------------------------------------------- /examples/course_buying_cart/img/cart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhm-dev/100-plus-dom-projects/HEAD/examples/course_buying_cart/img/cart.png -------------------------------------------------------------------------------- /examples/course_buying_cart/img/course1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhm-dev/100-plus-dom-projects/HEAD/examples/course_buying_cart/img/course1.jpg -------------------------------------------------------------------------------- /examples/course_buying_cart/img/course2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhm-dev/100-plus-dom-projects/HEAD/examples/course_buying_cart/img/course2.jpg -------------------------------------------------------------------------------- /examples/course_buying_cart/img/course3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhm-dev/100-plus-dom-projects/HEAD/examples/course_buying_cart/img/course3.jpg -------------------------------------------------------------------------------- /examples/course_buying_cart/img/course4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhm-dev/100-plus-dom-projects/HEAD/examples/course_buying_cart/img/course4.jpg -------------------------------------------------------------------------------- /examples/course_buying_cart/img/course5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhm-dev/100-plus-dom-projects/HEAD/examples/course_buying_cart/img/course5.jpg -------------------------------------------------------------------------------- /examples/course_buying_cart/img/courses.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhm-dev/100-plus-dom-projects/HEAD/examples/course_buying_cart/img/courses.png -------------------------------------------------------------------------------- /examples/course_buying_cart/img/emptyCard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhm-dev/100-plus-dom-projects/HEAD/examples/course_buying_cart/img/emptyCard.png -------------------------------------------------------------------------------- /examples/course_buying_cart/img/hero.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhm-dev/100-plus-dom-projects/HEAD/examples/course_buying_cart/img/hero.jpg -------------------------------------------------------------------------------- /examples/course_buying_cart/img/icon1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhm-dev/100-plus-dom-projects/HEAD/examples/course_buying_cart/img/icon1.png -------------------------------------------------------------------------------- /examples/course_buying_cart/img/icon2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhm-dev/100-plus-dom-projects/HEAD/examples/course_buying_cart/img/icon2.png -------------------------------------------------------------------------------- /examples/course_buying_cart/img/icon3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhm-dev/100-plus-dom-projects/HEAD/examples/course_buying_cart/img/icon3.png -------------------------------------------------------------------------------- /examples/course_buying_cart/img/logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhm-dev/100-plus-dom-projects/HEAD/examples/course_buying_cart/img/logo.jpg -------------------------------------------------------------------------------- /examples/course_buying_cart/img/mglass.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhm-dev/100-plus-dom-projects/HEAD/examples/course_buying_cart/img/mglass.png -------------------------------------------------------------------------------- /examples/course_buying_cart/img/stars.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhm-dev/100-plus-dom-projects/HEAD/examples/course_buying_cart/img/stars.png -------------------------------------------------------------------------------- /examples/course_buying_cart/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhm-dev/100-plus-dom-projects/HEAD/examples/course_buying_cart/index.html -------------------------------------------------------------------------------- /examples/course_buying_cart/js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhm-dev/100-plus-dom-projects/HEAD/examples/course_buying_cart/js/app.js -------------------------------------------------------------------------------- /examples/love_calculator/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhm-dev/100-plus-dom-projects/HEAD/examples/love_calculator/README.md -------------------------------------------------------------------------------- /examples/love_calculator/assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhm-dev/100-plus-dom-projects/HEAD/examples/love_calculator/assets/logo.png -------------------------------------------------------------------------------- /examples/love_calculator/assets/screenshot-mobile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhm-dev/100-plus-dom-projects/HEAD/examples/love_calculator/assets/screenshot-mobile.png -------------------------------------------------------------------------------- /examples/love_calculator/assets/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhm-dev/100-plus-dom-projects/HEAD/examples/love_calculator/assets/screenshot.png -------------------------------------------------------------------------------- /examples/love_calculator/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhm-dev/100-plus-dom-projects/HEAD/examples/love_calculator/css/style.css -------------------------------------------------------------------------------- /examples/love_calculator/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhm-dev/100-plus-dom-projects/HEAD/examples/love_calculator/index.html -------------------------------------------------------------------------------- /examples/love_calculator/scripts/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhm-dev/100-plus-dom-projects/HEAD/examples/love_calculator/scripts/script.js -------------------------------------------------------------------------------- /examples/luck-Rolling/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules -------------------------------------------------------------------------------- /examples/luck-Rolling/dist/assets/backgrounds/accent-background.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhm-dev/100-plus-dom-projects/HEAD/examples/luck-Rolling/dist/assets/backgrounds/accent-background.svg -------------------------------------------------------------------------------- /examples/luck-Rolling/dist/assets/backgrounds/primary-background.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhm-dev/100-plus-dom-projects/HEAD/examples/luck-Rolling/dist/assets/backgrounds/primary-background.svg -------------------------------------------------------------------------------- /examples/luck-Rolling/dist/assets/backgrounds/success-background.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhm-dev/100-plus-dom-projects/HEAD/examples/luck-Rolling/dist/assets/backgrounds/success-background.svg -------------------------------------------------------------------------------- /examples/luck-Rolling/dist/assets/dices/default.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhm-dev/100-plus-dom-projects/HEAD/examples/luck-Rolling/dist/assets/dices/default.jpg -------------------------------------------------------------------------------- /examples/luck-Rolling/dist/assets/dices/dice-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhm-dev/100-plus-dom-projects/HEAD/examples/luck-Rolling/dist/assets/dices/dice-1.png -------------------------------------------------------------------------------- /examples/luck-Rolling/dist/assets/dices/dice-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhm-dev/100-plus-dom-projects/HEAD/examples/luck-Rolling/dist/assets/dices/dice-2.png -------------------------------------------------------------------------------- /examples/luck-Rolling/dist/assets/dices/dice-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhm-dev/100-plus-dom-projects/HEAD/examples/luck-Rolling/dist/assets/dices/dice-3.png -------------------------------------------------------------------------------- /examples/luck-Rolling/dist/assets/dices/dice-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhm-dev/100-plus-dom-projects/HEAD/examples/luck-Rolling/dist/assets/dices/dice-4.png -------------------------------------------------------------------------------- /examples/luck-Rolling/dist/assets/dices/dice-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhm-dev/100-plus-dom-projects/HEAD/examples/luck-Rolling/dist/assets/dices/dice-5.png -------------------------------------------------------------------------------- /examples/luck-Rolling/dist/assets/dices/dice-6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhm-dev/100-plus-dom-projects/HEAD/examples/luck-Rolling/dist/assets/dices/dice-6.png -------------------------------------------------------------------------------- /examples/luck-Rolling/dist/assets/frameMac.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhm-dev/100-plus-dom-projects/HEAD/examples/luck-Rolling/dist/assets/frameMac.png -------------------------------------------------------------------------------- /examples/luck-Rolling/dist/assets/icons/dice-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhm-dev/100-plus-dom-projects/HEAD/examples/luck-Rolling/dist/assets/icons/dice-icon.svg -------------------------------------------------------------------------------- /examples/luck-Rolling/dist/assets/icons/gethelp-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhm-dev/100-plus-dom-projects/HEAD/examples/luck-Rolling/dist/assets/icons/gethelp-icon.svg -------------------------------------------------------------------------------- /examples/luck-Rolling/dist/assets/icons/heart.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhm-dev/100-plus-dom-projects/HEAD/examples/luck-Rolling/dist/assets/icons/heart.svg -------------------------------------------------------------------------------- /examples/luck-Rolling/dist/assets/icons/hold-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhm-dev/100-plus-dom-projects/HEAD/examples/luck-Rolling/dist/assets/icons/hold-icon.svg -------------------------------------------------------------------------------- /examples/luck-Rolling/dist/assets/icons/newgame-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhm-dev/100-plus-dom-projects/HEAD/examples/luck-Rolling/dist/assets/icons/newgame-icon.svg -------------------------------------------------------------------------------- /examples/luck-Rolling/dist/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhm-dev/100-plus-dom-projects/HEAD/examples/luck-Rolling/dist/index.html -------------------------------------------------------------------------------- /examples/luck-Rolling/dist/scripts/app.179.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhm-dev/100-plus-dom-projects/HEAD/examples/luck-Rolling/dist/scripts/app.179.js -------------------------------------------------------------------------------- /examples/luck-Rolling/dist/styles/style.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhm-dev/100-plus-dom-projects/HEAD/examples/luck-Rolling/dist/styles/style.min.css -------------------------------------------------------------------------------- /examples/luck-Rolling/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhm-dev/100-plus-dom-projects/HEAD/examples/luck-Rolling/package-lock.json -------------------------------------------------------------------------------- /examples/luck-Rolling/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhm-dev/100-plus-dom-projects/HEAD/examples/luck-Rolling/package.json -------------------------------------------------------------------------------- /examples/luck-Rolling/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhm-dev/100-plus-dom-projects/HEAD/examples/luck-Rolling/readme.md -------------------------------------------------------------------------------- /examples/luck-Rolling/src/sass/_animation.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhm-dev/100-plus-dom-projects/HEAD/examples/luck-Rolling/src/sass/_animation.scss -------------------------------------------------------------------------------- /examples/luck-Rolling/src/sass/_modalwindow.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhm-dev/100-plus-dom-projects/HEAD/examples/luck-Rolling/src/sass/_modalwindow.scss -------------------------------------------------------------------------------- /examples/luck-Rolling/src/sass/_reset.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhm-dev/100-plus-dom-projects/HEAD/examples/luck-Rolling/src/sass/_reset.scss -------------------------------------------------------------------------------- /examples/luck-Rolling/src/sass/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhm-dev/100-plus-dom-projects/HEAD/examples/luck-Rolling/src/sass/style.scss -------------------------------------------------------------------------------- /examples/luck-Rolling/src/scripts/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhm-dev/100-plus-dom-projects/HEAD/examples/luck-Rolling/src/scripts/script.js -------------------------------------------------------------------------------- /examples/luck-Rolling/src/scripts/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhm-dev/100-plus-dom-projects/HEAD/examples/luck-Rolling/src/scripts/utils.js -------------------------------------------------------------------------------- /examples/luck-Rolling/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhm-dev/100-plus-dom-projects/HEAD/examples/luck-Rolling/webpack.config.js -------------------------------------------------------------------------------- /examples/mini-converter-app/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhm-dev/100-plus-dom-projects/HEAD/examples/mini-converter-app/README.md -------------------------------------------------------------------------------- /examples/mini-converter-app/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhm-dev/100-plus-dom-projects/HEAD/examples/mini-converter-app/app.js -------------------------------------------------------------------------------- /examples/mini-converter-app/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhm-dev/100-plus-dom-projects/HEAD/examples/mini-converter-app/css/style.css -------------------------------------------------------------------------------- /examples/mini-converter-app/images/UI.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhm-dev/100-plus-dom-projects/HEAD/examples/mini-converter-app/images/UI.PNG -------------------------------------------------------------------------------- /examples/mini-converter-app/images/folder-structure.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhm-dev/100-plus-dom-projects/HEAD/examples/mini-converter-app/images/folder-structure.PNG -------------------------------------------------------------------------------- /examples/mini-converter-app/images/sample-output.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhm-dev/100-plus-dom-projects/HEAD/examples/mini-converter-app/images/sample-output.PNG -------------------------------------------------------------------------------- /examples/mini-converter-app/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhm-dev/100-plus-dom-projects/HEAD/examples/mini-converter-app/index.html -------------------------------------------------------------------------------- /examples/mini-converter-app/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhm-dev/100-plus-dom-projects/HEAD/examples/mini-converter-app/package.json -------------------------------------------------------------------------------- /examples/note-taker/Css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhm-dev/100-plus-dom-projects/HEAD/examples/note-taker/Css/bootstrap.css -------------------------------------------------------------------------------- /examples/note-taker/Css/bootstrap.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhm-dev/100-plus-dom-projects/HEAD/examples/note-taker/Css/bootstrap.css.map -------------------------------------------------------------------------------- /examples/note-taker/Css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhm-dev/100-plus-dom-projects/HEAD/examples/note-taker/Css/style.css -------------------------------------------------------------------------------- /examples/note-taker/Js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhm-dev/100-plus-dom-projects/HEAD/examples/note-taker/Js/app.js -------------------------------------------------------------------------------- /examples/note-taker/Js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhm-dev/100-plus-dom-projects/HEAD/examples/note-taker/Js/bootstrap.js -------------------------------------------------------------------------------- /examples/note-taker/Js/bootstrap.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhm-dev/100-plus-dom-projects/HEAD/examples/note-taker/Js/bootstrap.js.map -------------------------------------------------------------------------------- /examples/note-taker/Js/jquery-3.5.1.slim.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhm-dev/100-plus-dom-projects/HEAD/examples/note-taker/Js/jquery-3.5.1.slim.min.js -------------------------------------------------------------------------------- /examples/note-taker/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhm-dev/100-plus-dom-projects/HEAD/examples/note-taker/README.md -------------------------------------------------------------------------------- /examples/note-taker/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhm-dev/100-plus-dom-projects/HEAD/examples/note-taker/index.html -------------------------------------------------------------------------------- /examples/note-taker/screenshots/Screenshot_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhm-dev/100-plus-dom-projects/HEAD/examples/note-taker/screenshots/Screenshot_1.jpg -------------------------------------------------------------------------------- /examples/note-taker/screenshots/Screenshot_2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhm-dev/100-plus-dom-projects/HEAD/examples/note-taker/screenshots/Screenshot_2.jpg -------------------------------------------------------------------------------- /examples/note-taker/screenshots/Screenshot_3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhm-dev/100-plus-dom-projects/HEAD/examples/note-taker/screenshots/Screenshot_3.jpg -------------------------------------------------------------------------------- /examples/tipCalculator/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhm-dev/100-plus-dom-projects/HEAD/examples/tipCalculator/README.md -------------------------------------------------------------------------------- /examples/tipCalculator/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhm-dev/100-plus-dom-projects/HEAD/examples/tipCalculator/css/style.css -------------------------------------------------------------------------------- /examples/tipCalculator/css/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhm-dev/100-plus-dom-projects/HEAD/examples/tipCalculator/css/style.scss -------------------------------------------------------------------------------- /examples/tipCalculator/design/screenshot-desktop.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhm-dev/100-plus-dom-projects/HEAD/examples/tipCalculator/design/screenshot-desktop.jpg -------------------------------------------------------------------------------- /examples/tipCalculator/design/screenshot-mobile.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhm-dev/100-plus-dom-projects/HEAD/examples/tipCalculator/design/screenshot-mobile.jpg -------------------------------------------------------------------------------- /examples/tipCalculator/images/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhm-dev/100-plus-dom-projects/HEAD/examples/tipCalculator/images/favicon-32x32.png -------------------------------------------------------------------------------- /examples/tipCalculator/images/icon-dollar.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhm-dev/100-plus-dom-projects/HEAD/examples/tipCalculator/images/icon-dollar.svg -------------------------------------------------------------------------------- /examples/tipCalculator/images/icon-person.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhm-dev/100-plus-dom-projects/HEAD/examples/tipCalculator/images/icon-person.svg -------------------------------------------------------------------------------- /examples/tipCalculator/images/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhm-dev/100-plus-dom-projects/HEAD/examples/tipCalculator/images/logo.svg -------------------------------------------------------------------------------- /examples/tipCalculator/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhm-dev/100-plus-dom-projects/HEAD/examples/tipCalculator/index.html -------------------------------------------------------------------------------- /examples/tipCalculator/js/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhm-dev/100-plus-dom-projects/HEAD/examples/tipCalculator/js/script.js -------------------------------------------------------------------------------- /examples/touch-me-game/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhm-dev/100-plus-dom-projects/HEAD/examples/touch-me-game/README.md -------------------------------------------------------------------------------- /examples/touch-me-game/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhm-dev/100-plus-dom-projects/HEAD/examples/touch-me-game/css/style.css -------------------------------------------------------------------------------- /examples/touch-me-game/css/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhm-dev/100-plus-dom-projects/HEAD/examples/touch-me-game/css/style.scss -------------------------------------------------------------------------------- /examples/touch-me-game/img/touch-me.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhm-dev/100-plus-dom-projects/HEAD/examples/touch-me-game/img/touch-me.png -------------------------------------------------------------------------------- /examples/touch-me-game/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhm-dev/100-plus-dom-projects/HEAD/examples/touch-me-game/index.html -------------------------------------------------------------------------------- /examples/touch-me-game/js/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhm-dev/100-plus-dom-projects/HEAD/examples/touch-me-game/js/script.js -------------------------------------------------------------------------------- /examples/touch-me-game/screenshots/screenshot-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhm-dev/100-plus-dom-projects/HEAD/examples/touch-me-game/screenshots/screenshot-1.png -------------------------------------------------------------------------------- /examples/touch-me-game/screenshots/screenshot-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhm-dev/100-plus-dom-projects/HEAD/examples/touch-me-game/screenshots/screenshot-2.png -------------------------------------------------------------------------------- /src/project-1/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhm-dev/100-plus-dom-projects/HEAD/src/project-1/app.js -------------------------------------------------------------------------------- /src/project-1/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhm-dev/100-plus-dom-projects/HEAD/src/project-1/index.html -------------------------------------------------------------------------------- /src/project-1/project-1.1/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhm-dev/100-plus-dom-projects/HEAD/src/project-1/project-1.1/app.js -------------------------------------------------------------------------------- /src/project-1/project-1.1/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhm-dev/100-plus-dom-projects/HEAD/src/project-1/project-1.1/index.html -------------------------------------------------------------------------------- /src/project-1/project-1.1/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhm-dev/100-plus-dom-projects/HEAD/src/project-1/project-1.1/style.css -------------------------------------------------------------------------------- /src/project-1/project-1.2/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhm-dev/100-plus-dom-projects/HEAD/src/project-1/project-1.2/app.js -------------------------------------------------------------------------------- /src/project-1/project-1.2/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhm-dev/100-plus-dom-projects/HEAD/src/project-1/project-1.2/index.html -------------------------------------------------------------------------------- /src/project-1/project-1.2/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhm-dev/100-plus-dom-projects/HEAD/src/project-1/project-1.2/style.css -------------------------------------------------------------------------------- /src/project-1/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhm-dev/100-plus-dom-projects/HEAD/src/project-1/style.css -------------------------------------------------------------------------------- /src/project-10/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhm-dev/100-plus-dom-projects/HEAD/src/project-10/app.js -------------------------------------------------------------------------------- /src/project-10/copy-sound.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhm-dev/100-plus-dom-projects/HEAD/src/project-10/copy-sound.wav -------------------------------------------------------------------------------- /src/project-10/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhm-dev/100-plus-dom-projects/HEAD/src/project-10/index.html -------------------------------------------------------------------------------- /src/project-10/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhm-dev/100-plus-dom-projects/HEAD/src/project-10/style.css -------------------------------------------------------------------------------- /src/project-11/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhm-dev/100-plus-dom-projects/HEAD/src/project-11/app.js -------------------------------------------------------------------------------- /src/project-11/copy-sound.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhm-dev/100-plus-dom-projects/HEAD/src/project-11/copy-sound.wav -------------------------------------------------------------------------------- /src/project-11/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhm-dev/100-plus-dom-projects/HEAD/src/project-11/index.html -------------------------------------------------------------------------------- /src/project-11/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhm-dev/100-plus-dom-projects/HEAD/src/project-11/style.css -------------------------------------------------------------------------------- /src/project-12/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhm-dev/100-plus-dom-projects/HEAD/src/project-12/app.js -------------------------------------------------------------------------------- /src/project-12/copy-sound.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhm-dev/100-plus-dom-projects/HEAD/src/project-12/copy-sound.wav -------------------------------------------------------------------------------- /src/project-12/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhm-dev/100-plus-dom-projects/HEAD/src/project-12/index.html -------------------------------------------------------------------------------- /src/project-12/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhm-dev/100-plus-dom-projects/HEAD/src/project-12/style.css -------------------------------------------------------------------------------- /src/project-14/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhm-dev/100-plus-dom-projects/HEAD/src/project-14/app.js -------------------------------------------------------------------------------- /src/project-14/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhm-dev/100-plus-dom-projects/HEAD/src/project-14/index.html -------------------------------------------------------------------------------- /src/project-14/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhm-dev/100-plus-dom-projects/HEAD/src/project-14/style.css -------------------------------------------------------------------------------- /src/project-15/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhm-dev/100-plus-dom-projects/HEAD/src/project-15/app.js -------------------------------------------------------------------------------- /src/project-15/copy-sound.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhm-dev/100-plus-dom-projects/HEAD/src/project-15/copy-sound.wav -------------------------------------------------------------------------------- /src/project-15/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhm-dev/100-plus-dom-projects/HEAD/src/project-15/index.html -------------------------------------------------------------------------------- /src/project-15/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhm-dev/100-plus-dom-projects/HEAD/src/project-15/style.css -------------------------------------------------------------------------------- /src/project-16/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhm-dev/100-plus-dom-projects/HEAD/src/project-16/index.html -------------------------------------------------------------------------------- /src/project-16/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhm-dev/100-plus-dom-projects/HEAD/src/project-16/index.js -------------------------------------------------------------------------------- /src/project-16/quotes-api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhm-dev/100-plus-dom-projects/HEAD/src/project-16/quotes-api.js -------------------------------------------------------------------------------- /src/project-16/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhm-dev/100-plus-dom-projects/HEAD/src/project-16/style.css -------------------------------------------------------------------------------- /src/project-2/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhm-dev/100-plus-dom-projects/HEAD/src/project-2/app.js -------------------------------------------------------------------------------- /src/project-2/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhm-dev/100-plus-dom-projects/HEAD/src/project-2/index.html -------------------------------------------------------------------------------- /src/project-2/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhm-dev/100-plus-dom-projects/HEAD/src/project-2/style.css -------------------------------------------------------------------------------- /src/project-3/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhm-dev/100-plus-dom-projects/HEAD/src/project-3/app.js -------------------------------------------------------------------------------- /src/project-3/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhm-dev/100-plus-dom-projects/HEAD/src/project-3/index.html -------------------------------------------------------------------------------- /src/project-3/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhm-dev/100-plus-dom-projects/HEAD/src/project-3/style.css -------------------------------------------------------------------------------- /src/project-4/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhm-dev/100-plus-dom-projects/HEAD/src/project-4/app.js -------------------------------------------------------------------------------- /src/project-4/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhm-dev/100-plus-dom-projects/HEAD/src/project-4/index.html -------------------------------------------------------------------------------- /src/project-4/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhm-dev/100-plus-dom-projects/HEAD/src/project-4/style.css -------------------------------------------------------------------------------- /src/project-5/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhm-dev/100-plus-dom-projects/HEAD/src/project-5/app.js -------------------------------------------------------------------------------- /src/project-5/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhm-dev/100-plus-dom-projects/HEAD/src/project-5/index.html -------------------------------------------------------------------------------- /src/project-5/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhm-dev/100-plus-dom-projects/HEAD/src/project-5/style.css -------------------------------------------------------------------------------- /src/project-6/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhm-dev/100-plus-dom-projects/HEAD/src/project-6/app.js -------------------------------------------------------------------------------- /src/project-6/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhm-dev/100-plus-dom-projects/HEAD/src/project-6/index.html -------------------------------------------------------------------------------- /src/project-6/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhm-dev/100-plus-dom-projects/HEAD/src/project-6/style.css -------------------------------------------------------------------------------- /src/project-7/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhm-dev/100-plus-dom-projects/HEAD/src/project-7/app.js -------------------------------------------------------------------------------- /src/project-7/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhm-dev/100-plus-dom-projects/HEAD/src/project-7/index.html -------------------------------------------------------------------------------- /src/project-7/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhm-dev/100-plus-dom-projects/HEAD/src/project-7/style.css -------------------------------------------------------------------------------- /src/project-8/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhm-dev/100-plus-dom-projects/HEAD/src/project-8/app.js -------------------------------------------------------------------------------- /src/project-8/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhm-dev/100-plus-dom-projects/HEAD/src/project-8/index.html -------------------------------------------------------------------------------- /src/project-8/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhm-dev/100-plus-dom-projects/HEAD/src/project-8/style.css -------------------------------------------------------------------------------- /src/project-9/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhm-dev/100-plus-dom-projects/HEAD/src/project-9/app.js -------------------------------------------------------------------------------- /src/project-9/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhm-dev/100-plus-dom-projects/HEAD/src/project-9/index.html -------------------------------------------------------------------------------- /src/project-9/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhm-dev/100-plus-dom-projects/HEAD/src/project-9/style.css --------------------------------------------------------------------------------