├── .gitignore ├── README.md ├── contributors.md ├── css ├── about.css ├── activities.css ├── backgrounds.css ├── books.css ├── carousel.css ├── catchTheWitch.css ├── costumes.css ├── facts.css ├── fog.css ├── halloweenGames.css ├── movieSearch.css ├── movies.css ├── nameConverter.css ├── nameMeanings.css ├── pumpkinDesigns.css ├── recipes.css └── style.css ├── html ├── about.html ├── activities.html ├── backgrounds.html ├── boardGames.html ├── books.html ├── canvas.html ├── catchTheWitch.html ├── costumes.html ├── designs.html ├── facts.html ├── games.html ├── movieSearch.html ├── movies.html ├── names.html ├── recipes.html └── videoGames.html ├── images ├── Spinner-1.6s-200px.gif ├── activities │ ├── apples.jpg │ ├── forest.jpg │ ├── pumpkin stomp.jpg │ ├── pumpkins.jpg │ └── treats.jpeg ├── angelofdarkness.jpeg ├── banners │ ├── clown.jpg │ ├── clownslide.png │ ├── house.jpg │ ├── houseslide.png │ ├── pumpbanner.png │ └── pumpslide.png ├── black-magic.jpg ├── carmilla.jpg ├── costumes.jpg ├── cupcake.jpg ├── drink.png ├── food.png ├── good-evil.png ├── halloween_chucky_chucky_doll-1202065.jpg ├── halloweenfigure.jpg ├── helloween_wallpaper.jpg ├── icons │ ├── bat.svg │ ├── candle.svg │ ├── cute-pumpkin.svg │ ├── frankenstein.svg │ └── ghost.svg ├── marshmallowspiders.PNG ├── masque.jpeg ├── minicanvas.png ├── noPoster.png ├── paranorman.jpg ├── pumpkin.jpg ├── pumpkin_carving.jpg ├── pumpkins │ ├── cutepump1.jpg │ ├── pumpkin1.jpg │ ├── pumpkin2.jpg │ ├── pumpkin3.jpg │ ├── pumpkin4.jpg │ ├── pumpkin5.jpg │ └── pumpkin6.jpg ├── pumpsoup.jpg ├── recipe1.JPG ├── recipeback.jpeg ├── unicorn-blood.jpg ├── witch.png ├── witchCatched.png └── ztm-halloween-logo.svg ├── index.html ├── js ├── audioControl.js ├── books.js ├── canvas.js ├── catchTheWitch.js ├── cssLoad.js ├── designSearch.js ├── facts.js ├── gameSearch.js ├── global.js ├── headFoot.js ├── movieList.js ├── movieSearch.js ├── nameContainer.js ├── nameConverter.js └── names.js ├── lighthouse └── zero-to-mastery.github.io-20181012T213452.json ├── media ├── background.wav ├── happyh.mp3 ├── knock.mp3 └── spooky.webm └── txt ├── facts.txt └── names.txt /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | .idea/ 3 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zero-to-mastery/Halloween-Hacktoberfest-Edition/HEAD/README.md -------------------------------------------------------------------------------- /contributors.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zero-to-mastery/Halloween-Hacktoberfest-Edition/HEAD/contributors.md -------------------------------------------------------------------------------- /css/about.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zero-to-mastery/Halloween-Hacktoberfest-Edition/HEAD/css/about.css -------------------------------------------------------------------------------- /css/activities.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zero-to-mastery/Halloween-Hacktoberfest-Edition/HEAD/css/activities.css -------------------------------------------------------------------------------- /css/backgrounds.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zero-to-mastery/Halloween-Hacktoberfest-Edition/HEAD/css/backgrounds.css -------------------------------------------------------------------------------- /css/books.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zero-to-mastery/Halloween-Hacktoberfest-Edition/HEAD/css/books.css -------------------------------------------------------------------------------- /css/carousel.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zero-to-mastery/Halloween-Hacktoberfest-Edition/HEAD/css/carousel.css -------------------------------------------------------------------------------- /css/catchTheWitch.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zero-to-mastery/Halloween-Hacktoberfest-Edition/HEAD/css/catchTheWitch.css -------------------------------------------------------------------------------- /css/costumes.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zero-to-mastery/Halloween-Hacktoberfest-Edition/HEAD/css/costumes.css -------------------------------------------------------------------------------- /css/facts.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zero-to-mastery/Halloween-Hacktoberfest-Edition/HEAD/css/facts.css -------------------------------------------------------------------------------- /css/fog.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zero-to-mastery/Halloween-Hacktoberfest-Edition/HEAD/css/fog.css -------------------------------------------------------------------------------- /css/halloweenGames.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zero-to-mastery/Halloween-Hacktoberfest-Edition/HEAD/css/halloweenGames.css -------------------------------------------------------------------------------- /css/movieSearch.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zero-to-mastery/Halloween-Hacktoberfest-Edition/HEAD/css/movieSearch.css -------------------------------------------------------------------------------- /css/movies.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zero-to-mastery/Halloween-Hacktoberfest-Edition/HEAD/css/movies.css -------------------------------------------------------------------------------- /css/nameConverter.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zero-to-mastery/Halloween-Hacktoberfest-Edition/HEAD/css/nameConverter.css -------------------------------------------------------------------------------- /css/nameMeanings.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zero-to-mastery/Halloween-Hacktoberfest-Edition/HEAD/css/nameMeanings.css -------------------------------------------------------------------------------- /css/pumpkinDesigns.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zero-to-mastery/Halloween-Hacktoberfest-Edition/HEAD/css/pumpkinDesigns.css -------------------------------------------------------------------------------- /css/recipes.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zero-to-mastery/Halloween-Hacktoberfest-Edition/HEAD/css/recipes.css -------------------------------------------------------------------------------- /css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zero-to-mastery/Halloween-Hacktoberfest-Edition/HEAD/css/style.css -------------------------------------------------------------------------------- /html/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zero-to-mastery/Halloween-Hacktoberfest-Edition/HEAD/html/about.html -------------------------------------------------------------------------------- /html/activities.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zero-to-mastery/Halloween-Hacktoberfest-Edition/HEAD/html/activities.html -------------------------------------------------------------------------------- /html/backgrounds.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zero-to-mastery/Halloween-Hacktoberfest-Edition/HEAD/html/backgrounds.html -------------------------------------------------------------------------------- /html/boardGames.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zero-to-mastery/Halloween-Hacktoberfest-Edition/HEAD/html/boardGames.html -------------------------------------------------------------------------------- /html/books.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zero-to-mastery/Halloween-Hacktoberfest-Edition/HEAD/html/books.html -------------------------------------------------------------------------------- /html/canvas.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zero-to-mastery/Halloween-Hacktoberfest-Edition/HEAD/html/canvas.html -------------------------------------------------------------------------------- /html/catchTheWitch.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zero-to-mastery/Halloween-Hacktoberfest-Edition/HEAD/html/catchTheWitch.html -------------------------------------------------------------------------------- /html/costumes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zero-to-mastery/Halloween-Hacktoberfest-Edition/HEAD/html/costumes.html -------------------------------------------------------------------------------- /html/designs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zero-to-mastery/Halloween-Hacktoberfest-Edition/HEAD/html/designs.html -------------------------------------------------------------------------------- /html/facts.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zero-to-mastery/Halloween-Hacktoberfest-Edition/HEAD/html/facts.html -------------------------------------------------------------------------------- /html/games.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zero-to-mastery/Halloween-Hacktoberfest-Edition/HEAD/html/games.html -------------------------------------------------------------------------------- /html/movieSearch.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zero-to-mastery/Halloween-Hacktoberfest-Edition/HEAD/html/movieSearch.html -------------------------------------------------------------------------------- /html/movies.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zero-to-mastery/Halloween-Hacktoberfest-Edition/HEAD/html/movies.html -------------------------------------------------------------------------------- /html/names.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zero-to-mastery/Halloween-Hacktoberfest-Edition/HEAD/html/names.html -------------------------------------------------------------------------------- /html/recipes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zero-to-mastery/Halloween-Hacktoberfest-Edition/HEAD/html/recipes.html -------------------------------------------------------------------------------- /html/videoGames.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zero-to-mastery/Halloween-Hacktoberfest-Edition/HEAD/html/videoGames.html -------------------------------------------------------------------------------- /images/Spinner-1.6s-200px.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zero-to-mastery/Halloween-Hacktoberfest-Edition/HEAD/images/Spinner-1.6s-200px.gif -------------------------------------------------------------------------------- /images/activities/apples.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zero-to-mastery/Halloween-Hacktoberfest-Edition/HEAD/images/activities/apples.jpg -------------------------------------------------------------------------------- /images/activities/forest.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zero-to-mastery/Halloween-Hacktoberfest-Edition/HEAD/images/activities/forest.jpg -------------------------------------------------------------------------------- /images/activities/pumpkin stomp.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zero-to-mastery/Halloween-Hacktoberfest-Edition/HEAD/images/activities/pumpkin stomp.jpg -------------------------------------------------------------------------------- /images/activities/pumpkins.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zero-to-mastery/Halloween-Hacktoberfest-Edition/HEAD/images/activities/pumpkins.jpg -------------------------------------------------------------------------------- /images/activities/treats.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zero-to-mastery/Halloween-Hacktoberfest-Edition/HEAD/images/activities/treats.jpeg -------------------------------------------------------------------------------- /images/angelofdarkness.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zero-to-mastery/Halloween-Hacktoberfest-Edition/HEAD/images/angelofdarkness.jpeg -------------------------------------------------------------------------------- /images/banners/clown.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zero-to-mastery/Halloween-Hacktoberfest-Edition/HEAD/images/banners/clown.jpg -------------------------------------------------------------------------------- /images/banners/clownslide.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zero-to-mastery/Halloween-Hacktoberfest-Edition/HEAD/images/banners/clownslide.png -------------------------------------------------------------------------------- /images/banners/house.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zero-to-mastery/Halloween-Hacktoberfest-Edition/HEAD/images/banners/house.jpg -------------------------------------------------------------------------------- /images/banners/houseslide.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zero-to-mastery/Halloween-Hacktoberfest-Edition/HEAD/images/banners/houseslide.png -------------------------------------------------------------------------------- /images/banners/pumpbanner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zero-to-mastery/Halloween-Hacktoberfest-Edition/HEAD/images/banners/pumpbanner.png -------------------------------------------------------------------------------- /images/banners/pumpslide.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zero-to-mastery/Halloween-Hacktoberfest-Edition/HEAD/images/banners/pumpslide.png -------------------------------------------------------------------------------- /images/black-magic.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zero-to-mastery/Halloween-Hacktoberfest-Edition/HEAD/images/black-magic.jpg -------------------------------------------------------------------------------- /images/carmilla.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zero-to-mastery/Halloween-Hacktoberfest-Edition/HEAD/images/carmilla.jpg -------------------------------------------------------------------------------- /images/costumes.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zero-to-mastery/Halloween-Hacktoberfest-Edition/HEAD/images/costumes.jpg -------------------------------------------------------------------------------- /images/cupcake.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zero-to-mastery/Halloween-Hacktoberfest-Edition/HEAD/images/cupcake.jpg -------------------------------------------------------------------------------- /images/drink.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zero-to-mastery/Halloween-Hacktoberfest-Edition/HEAD/images/drink.png -------------------------------------------------------------------------------- /images/food.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zero-to-mastery/Halloween-Hacktoberfest-Edition/HEAD/images/food.png -------------------------------------------------------------------------------- /images/good-evil.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zero-to-mastery/Halloween-Hacktoberfest-Edition/HEAD/images/good-evil.png -------------------------------------------------------------------------------- /images/halloween_chucky_chucky_doll-1202065.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zero-to-mastery/Halloween-Hacktoberfest-Edition/HEAD/images/halloween_chucky_chucky_doll-1202065.jpg -------------------------------------------------------------------------------- /images/halloweenfigure.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zero-to-mastery/Halloween-Hacktoberfest-Edition/HEAD/images/halloweenfigure.jpg -------------------------------------------------------------------------------- /images/helloween_wallpaper.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zero-to-mastery/Halloween-Hacktoberfest-Edition/HEAD/images/helloween_wallpaper.jpg -------------------------------------------------------------------------------- /images/icons/bat.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zero-to-mastery/Halloween-Hacktoberfest-Edition/HEAD/images/icons/bat.svg -------------------------------------------------------------------------------- /images/icons/candle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zero-to-mastery/Halloween-Hacktoberfest-Edition/HEAD/images/icons/candle.svg -------------------------------------------------------------------------------- /images/icons/cute-pumpkin.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zero-to-mastery/Halloween-Hacktoberfest-Edition/HEAD/images/icons/cute-pumpkin.svg -------------------------------------------------------------------------------- /images/icons/frankenstein.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zero-to-mastery/Halloween-Hacktoberfest-Edition/HEAD/images/icons/frankenstein.svg -------------------------------------------------------------------------------- /images/icons/ghost.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zero-to-mastery/Halloween-Hacktoberfest-Edition/HEAD/images/icons/ghost.svg -------------------------------------------------------------------------------- /images/marshmallowspiders.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zero-to-mastery/Halloween-Hacktoberfest-Edition/HEAD/images/marshmallowspiders.PNG -------------------------------------------------------------------------------- /images/masque.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zero-to-mastery/Halloween-Hacktoberfest-Edition/HEAD/images/masque.jpeg -------------------------------------------------------------------------------- /images/minicanvas.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zero-to-mastery/Halloween-Hacktoberfest-Edition/HEAD/images/minicanvas.png -------------------------------------------------------------------------------- /images/noPoster.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zero-to-mastery/Halloween-Hacktoberfest-Edition/HEAD/images/noPoster.png -------------------------------------------------------------------------------- /images/paranorman.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zero-to-mastery/Halloween-Hacktoberfest-Edition/HEAD/images/paranorman.jpg -------------------------------------------------------------------------------- /images/pumpkin.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zero-to-mastery/Halloween-Hacktoberfest-Edition/HEAD/images/pumpkin.jpg -------------------------------------------------------------------------------- /images/pumpkin_carving.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zero-to-mastery/Halloween-Hacktoberfest-Edition/HEAD/images/pumpkin_carving.jpg -------------------------------------------------------------------------------- /images/pumpkins/cutepump1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zero-to-mastery/Halloween-Hacktoberfest-Edition/HEAD/images/pumpkins/cutepump1.jpg -------------------------------------------------------------------------------- /images/pumpkins/pumpkin1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zero-to-mastery/Halloween-Hacktoberfest-Edition/HEAD/images/pumpkins/pumpkin1.jpg -------------------------------------------------------------------------------- /images/pumpkins/pumpkin2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zero-to-mastery/Halloween-Hacktoberfest-Edition/HEAD/images/pumpkins/pumpkin2.jpg -------------------------------------------------------------------------------- /images/pumpkins/pumpkin3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zero-to-mastery/Halloween-Hacktoberfest-Edition/HEAD/images/pumpkins/pumpkin3.jpg -------------------------------------------------------------------------------- /images/pumpkins/pumpkin4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zero-to-mastery/Halloween-Hacktoberfest-Edition/HEAD/images/pumpkins/pumpkin4.jpg -------------------------------------------------------------------------------- /images/pumpkins/pumpkin5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zero-to-mastery/Halloween-Hacktoberfest-Edition/HEAD/images/pumpkins/pumpkin5.jpg -------------------------------------------------------------------------------- /images/pumpkins/pumpkin6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zero-to-mastery/Halloween-Hacktoberfest-Edition/HEAD/images/pumpkins/pumpkin6.jpg -------------------------------------------------------------------------------- /images/pumpsoup.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zero-to-mastery/Halloween-Hacktoberfest-Edition/HEAD/images/pumpsoup.jpg -------------------------------------------------------------------------------- /images/recipe1.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zero-to-mastery/Halloween-Hacktoberfest-Edition/HEAD/images/recipe1.JPG -------------------------------------------------------------------------------- /images/recipeback.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zero-to-mastery/Halloween-Hacktoberfest-Edition/HEAD/images/recipeback.jpeg -------------------------------------------------------------------------------- /images/unicorn-blood.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zero-to-mastery/Halloween-Hacktoberfest-Edition/HEAD/images/unicorn-blood.jpg -------------------------------------------------------------------------------- /images/witch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zero-to-mastery/Halloween-Hacktoberfest-Edition/HEAD/images/witch.png -------------------------------------------------------------------------------- /images/witchCatched.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zero-to-mastery/Halloween-Hacktoberfest-Edition/HEAD/images/witchCatched.png -------------------------------------------------------------------------------- /images/ztm-halloween-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zero-to-mastery/Halloween-Hacktoberfest-Edition/HEAD/images/ztm-halloween-logo.svg -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zero-to-mastery/Halloween-Hacktoberfest-Edition/HEAD/index.html -------------------------------------------------------------------------------- /js/audioControl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zero-to-mastery/Halloween-Hacktoberfest-Edition/HEAD/js/audioControl.js -------------------------------------------------------------------------------- /js/books.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zero-to-mastery/Halloween-Hacktoberfest-Edition/HEAD/js/books.js -------------------------------------------------------------------------------- /js/canvas.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zero-to-mastery/Halloween-Hacktoberfest-Edition/HEAD/js/canvas.js -------------------------------------------------------------------------------- /js/catchTheWitch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zero-to-mastery/Halloween-Hacktoberfest-Edition/HEAD/js/catchTheWitch.js -------------------------------------------------------------------------------- /js/cssLoad.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zero-to-mastery/Halloween-Hacktoberfest-Edition/HEAD/js/cssLoad.js -------------------------------------------------------------------------------- /js/designSearch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zero-to-mastery/Halloween-Hacktoberfest-Edition/HEAD/js/designSearch.js -------------------------------------------------------------------------------- /js/facts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zero-to-mastery/Halloween-Hacktoberfest-Edition/HEAD/js/facts.js -------------------------------------------------------------------------------- /js/gameSearch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zero-to-mastery/Halloween-Hacktoberfest-Edition/HEAD/js/gameSearch.js -------------------------------------------------------------------------------- /js/global.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zero-to-mastery/Halloween-Hacktoberfest-Edition/HEAD/js/global.js -------------------------------------------------------------------------------- /js/headFoot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zero-to-mastery/Halloween-Hacktoberfest-Edition/HEAD/js/headFoot.js -------------------------------------------------------------------------------- /js/movieList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zero-to-mastery/Halloween-Hacktoberfest-Edition/HEAD/js/movieList.js -------------------------------------------------------------------------------- /js/movieSearch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zero-to-mastery/Halloween-Hacktoberfest-Edition/HEAD/js/movieSearch.js -------------------------------------------------------------------------------- /js/nameContainer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zero-to-mastery/Halloween-Hacktoberfest-Edition/HEAD/js/nameContainer.js -------------------------------------------------------------------------------- /js/nameConverter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zero-to-mastery/Halloween-Hacktoberfest-Edition/HEAD/js/nameConverter.js -------------------------------------------------------------------------------- /js/names.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zero-to-mastery/Halloween-Hacktoberfest-Edition/HEAD/js/names.js -------------------------------------------------------------------------------- /lighthouse/zero-to-mastery.github.io-20181012T213452.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zero-to-mastery/Halloween-Hacktoberfest-Edition/HEAD/lighthouse/zero-to-mastery.github.io-20181012T213452.json -------------------------------------------------------------------------------- /media/background.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zero-to-mastery/Halloween-Hacktoberfest-Edition/HEAD/media/background.wav -------------------------------------------------------------------------------- /media/happyh.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zero-to-mastery/Halloween-Hacktoberfest-Edition/HEAD/media/happyh.mp3 -------------------------------------------------------------------------------- /media/knock.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zero-to-mastery/Halloween-Hacktoberfest-Edition/HEAD/media/knock.mp3 -------------------------------------------------------------------------------- /media/spooky.webm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zero-to-mastery/Halloween-Hacktoberfest-Edition/HEAD/media/spooky.webm -------------------------------------------------------------------------------- /txt/facts.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zero-to-mastery/Halloween-Hacktoberfest-Edition/HEAD/txt/facts.txt -------------------------------------------------------------------------------- /txt/names.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zero-to-mastery/Halloween-Hacktoberfest-Edition/HEAD/txt/names.txt --------------------------------------------------------------------------------