├── .gitignore ├── LICENSE ├── README.md ├── cheat-sheet.md ├── css ├── index.css ├── main.css ├── result.css └── wishlist.css ├── html-form-description.txt ├── img ├── confetis.svg ├── gift_box.svg ├── gift_top.svg ├── gifts │ ├── goldGift.jpg │ ├── groupGift.jpeg │ └── redGift.jpg └── list.svg ├── index.html ├── instructions ├── extra-steps.md ├── level1.md ├── level2.md └── level3.md ├── js ├── answers.js └── main.js ├── regular-expressions.txt ├── result.html └── wish-list.html /.gitignore: -------------------------------------------------------------------------------- 1 | .idea 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muses-code-js/js-xmas-edition/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muses-code-js/js-xmas-edition/HEAD/README.md -------------------------------------------------------------------------------- /cheat-sheet.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muses-code-js/js-xmas-edition/HEAD/cheat-sheet.md -------------------------------------------------------------------------------- /css/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muses-code-js/js-xmas-edition/HEAD/css/index.css -------------------------------------------------------------------------------- /css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muses-code-js/js-xmas-edition/HEAD/css/main.css -------------------------------------------------------------------------------- /css/result.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muses-code-js/js-xmas-edition/HEAD/css/result.css -------------------------------------------------------------------------------- /css/wishlist.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muses-code-js/js-xmas-edition/HEAD/css/wishlist.css -------------------------------------------------------------------------------- /html-form-description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muses-code-js/js-xmas-edition/HEAD/html-form-description.txt -------------------------------------------------------------------------------- /img/confetis.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muses-code-js/js-xmas-edition/HEAD/img/confetis.svg -------------------------------------------------------------------------------- /img/gift_box.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muses-code-js/js-xmas-edition/HEAD/img/gift_box.svg -------------------------------------------------------------------------------- /img/gift_top.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muses-code-js/js-xmas-edition/HEAD/img/gift_top.svg -------------------------------------------------------------------------------- /img/gifts/goldGift.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muses-code-js/js-xmas-edition/HEAD/img/gifts/goldGift.jpg -------------------------------------------------------------------------------- /img/gifts/groupGift.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muses-code-js/js-xmas-edition/HEAD/img/gifts/groupGift.jpeg -------------------------------------------------------------------------------- /img/gifts/redGift.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muses-code-js/js-xmas-edition/HEAD/img/gifts/redGift.jpg -------------------------------------------------------------------------------- /img/list.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muses-code-js/js-xmas-edition/HEAD/img/list.svg -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muses-code-js/js-xmas-edition/HEAD/index.html -------------------------------------------------------------------------------- /instructions/extra-steps.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muses-code-js/js-xmas-edition/HEAD/instructions/extra-steps.md -------------------------------------------------------------------------------- /instructions/level1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muses-code-js/js-xmas-edition/HEAD/instructions/level1.md -------------------------------------------------------------------------------- /instructions/level2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muses-code-js/js-xmas-edition/HEAD/instructions/level2.md -------------------------------------------------------------------------------- /instructions/level3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muses-code-js/js-xmas-edition/HEAD/instructions/level3.md -------------------------------------------------------------------------------- /js/answers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muses-code-js/js-xmas-edition/HEAD/js/answers.js -------------------------------------------------------------------------------- /js/main.js: -------------------------------------------------------------------------------- 1 | // Write all your javascript code in this file 2 | -------------------------------------------------------------------------------- /regular-expressions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muses-code-js/js-xmas-edition/HEAD/regular-expressions.txt -------------------------------------------------------------------------------- /result.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muses-code-js/js-xmas-edition/HEAD/result.html -------------------------------------------------------------------------------- /wish-list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muses-code-js/js-xmas-edition/HEAD/wish-list.html --------------------------------------------------------------------------------