├── Animated navigation ├── .vscode │ └── settings.json ├── animated.html ├── script.js └── style.css ├── Background Slider ├── .vscode │ └── settings.json ├── index.html ├── script.js └── style.css ├── Blurry Loading ├── .vscode │ └── settings.json ├── index.html ├── script.js └── style.css ├── Button ripple effect ├── .vscode │ └── settings.json ├── index.html ├── script.js └── style.css ├── Clock ├── .vscode │ └── settings.json ├── face.png ├── index.html ├── script.js └── style.css ├── Content Placeholder ├── index.html ├── script.js └── style.css ├── Dad jokes ├── .vscode │ └── settings.json ├── index.html ├── script.js └── style.css ├── Drag n Drop ├── .vscode │ └── settings.json ├── index.html ├── script.js └── style.css ├── Drawing App ├── .vscode │ └── settings.json ├── index.html ├── script.js └── style.css ├── Drink water ├── .vscode │ └── settings.json ├── index.html ├── script.js └── style.css ├── Expanding cards ├── .vscode │ └── settings.json ├── img │ ├── img1.jpg │ ├── img2.jpg │ ├── img3.jpg │ ├── img4.png │ ├── img5.png │ └── img6.png ├── index.html ├── script.js └── style.css ├── FAQ ├── .vscode │ └── settings.json ├── index.html ├── script.js └── style.css ├── Form input wave ├── .vscode │ └── settings.json ├── index.html ├── script.js └── style.css ├── Github Profiles ├── index.html ├── script.js └── style.css ├── Hidden search widget ├── index.html ├── script.js └── style.css ├── Increment Counter ├── .vscode │ └── settings.json ├── index.html ├── script.js └── style.css ├── KeyCodes ├── .vscode │ └── settings.json ├── index.html ├── script.js └── style.css ├── Mini mani mo ├── .vscode │ └── settings.json ├── index.html ├── script.js └── style.css ├── Movie App ├── index.html ├── script.js └── style.css ├── Preset files ├── index.html ├── script.js └── style.css ├── Progress steps ├── .vscode │ └── settings.json ├── index.html ├── script.js └── style.css ├── README.md ├── Rotate slide effect ├── .vscode │ └── settings.json ├── index.html ├── script.js └── style.css ├── Scroll animation ├── .vscode │ └── settings.json ├── index.html ├── script.js └── style.css ├── Sound Board ├── .vscode │ └── settings.json ├── index.html ├── script.js ├── sounds │ ├── sound-board_sounds_applause.mp3 │ ├── sound-board_sounds_boo.mp3 │ ├── sound-board_sounds_gasp.mp3 │ ├── sound-board_sounds_tada.mp3 │ ├── sound-board_sounds_victory.mp3 │ └── sound-board_sounds_wrong.mp3 └── style.css ├── Split Landing page ├── .vscode │ └── settings.json ├── img │ ├── grand.jpg │ └── upright.jpg ├── index.html ├── script.js └── style.css ├── Sticky Navbar ├── index.html ├── script.js ├── style.css ├── style.css.map └── style.scss ├── Toast Notofication ├── index.html ├── script.js └── style.css ├── Vertical SLider ├── img │ ├── blackGirl.JPG │ ├── gold.JPG │ ├── mama.JPG │ ├── pupleDresss.JPG │ └── white wedding.JPG ├── index.html ├── script.js └── style.css ├── index.html └── kinetic loader ├── index.html ├── script.js └── style.css /Animated navigation/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mo-renike/50Javascript-projects/HEAD/Animated navigation/.vscode/settings.json -------------------------------------------------------------------------------- /Animated navigation/animated.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mo-renike/50Javascript-projects/HEAD/Animated navigation/animated.html -------------------------------------------------------------------------------- /Animated navigation/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mo-renike/50Javascript-projects/HEAD/Animated navigation/script.js -------------------------------------------------------------------------------- /Animated navigation/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mo-renike/50Javascript-projects/HEAD/Animated navigation/style.css -------------------------------------------------------------------------------- /Background Slider/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mo-renike/50Javascript-projects/HEAD/Background Slider/.vscode/settings.json -------------------------------------------------------------------------------- /Background Slider/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mo-renike/50Javascript-projects/HEAD/Background Slider/index.html -------------------------------------------------------------------------------- /Background Slider/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mo-renike/50Javascript-projects/HEAD/Background Slider/script.js -------------------------------------------------------------------------------- /Background Slider/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mo-renike/50Javascript-projects/HEAD/Background Slider/style.css -------------------------------------------------------------------------------- /Blurry Loading/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mo-renike/50Javascript-projects/HEAD/Blurry Loading/.vscode/settings.json -------------------------------------------------------------------------------- /Blurry Loading/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mo-renike/50Javascript-projects/HEAD/Blurry Loading/index.html -------------------------------------------------------------------------------- /Blurry Loading/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mo-renike/50Javascript-projects/HEAD/Blurry Loading/script.js -------------------------------------------------------------------------------- /Blurry Loading/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mo-renike/50Javascript-projects/HEAD/Blurry Loading/style.css -------------------------------------------------------------------------------- /Button ripple effect/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mo-renike/50Javascript-projects/HEAD/Button ripple effect/.vscode/settings.json -------------------------------------------------------------------------------- /Button ripple effect/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mo-renike/50Javascript-projects/HEAD/Button ripple effect/index.html -------------------------------------------------------------------------------- /Button ripple effect/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mo-renike/50Javascript-projects/HEAD/Button ripple effect/script.js -------------------------------------------------------------------------------- /Button ripple effect/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mo-renike/50Javascript-projects/HEAD/Button ripple effect/style.css -------------------------------------------------------------------------------- /Clock/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mo-renike/50Javascript-projects/HEAD/Clock/.vscode/settings.json -------------------------------------------------------------------------------- /Clock/face.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mo-renike/50Javascript-projects/HEAD/Clock/face.png -------------------------------------------------------------------------------- /Clock/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mo-renike/50Javascript-projects/HEAD/Clock/index.html -------------------------------------------------------------------------------- /Clock/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mo-renike/50Javascript-projects/HEAD/Clock/script.js -------------------------------------------------------------------------------- /Clock/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mo-renike/50Javascript-projects/HEAD/Clock/style.css -------------------------------------------------------------------------------- /Content Placeholder/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mo-renike/50Javascript-projects/HEAD/Content Placeholder/index.html -------------------------------------------------------------------------------- /Content Placeholder/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mo-renike/50Javascript-projects/HEAD/Content Placeholder/script.js -------------------------------------------------------------------------------- /Content Placeholder/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mo-renike/50Javascript-projects/HEAD/Content Placeholder/style.css -------------------------------------------------------------------------------- /Dad jokes/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mo-renike/50Javascript-projects/HEAD/Dad jokes/.vscode/settings.json -------------------------------------------------------------------------------- /Dad jokes/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mo-renike/50Javascript-projects/HEAD/Dad jokes/index.html -------------------------------------------------------------------------------- /Dad jokes/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mo-renike/50Javascript-projects/HEAD/Dad jokes/script.js -------------------------------------------------------------------------------- /Dad jokes/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mo-renike/50Javascript-projects/HEAD/Dad jokes/style.css -------------------------------------------------------------------------------- /Drag n Drop/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mo-renike/50Javascript-projects/HEAD/Drag n Drop/.vscode/settings.json -------------------------------------------------------------------------------- /Drag n Drop/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mo-renike/50Javascript-projects/HEAD/Drag n Drop/index.html -------------------------------------------------------------------------------- /Drag n Drop/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mo-renike/50Javascript-projects/HEAD/Drag n Drop/script.js -------------------------------------------------------------------------------- /Drag n Drop/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mo-renike/50Javascript-projects/HEAD/Drag n Drop/style.css -------------------------------------------------------------------------------- /Drawing App/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mo-renike/50Javascript-projects/HEAD/Drawing App/.vscode/settings.json -------------------------------------------------------------------------------- /Drawing App/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mo-renike/50Javascript-projects/HEAD/Drawing App/index.html -------------------------------------------------------------------------------- /Drawing App/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mo-renike/50Javascript-projects/HEAD/Drawing App/script.js -------------------------------------------------------------------------------- /Drawing App/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mo-renike/50Javascript-projects/HEAD/Drawing App/style.css -------------------------------------------------------------------------------- /Drink water/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mo-renike/50Javascript-projects/HEAD/Drink water/.vscode/settings.json -------------------------------------------------------------------------------- /Drink water/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mo-renike/50Javascript-projects/HEAD/Drink water/index.html -------------------------------------------------------------------------------- /Drink water/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mo-renike/50Javascript-projects/HEAD/Drink water/script.js -------------------------------------------------------------------------------- /Drink water/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mo-renike/50Javascript-projects/HEAD/Drink water/style.css -------------------------------------------------------------------------------- /Expanding cards/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mo-renike/50Javascript-projects/HEAD/Expanding cards/.vscode/settings.json -------------------------------------------------------------------------------- /Expanding cards/img/img1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mo-renike/50Javascript-projects/HEAD/Expanding cards/img/img1.jpg -------------------------------------------------------------------------------- /Expanding cards/img/img2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mo-renike/50Javascript-projects/HEAD/Expanding cards/img/img2.jpg -------------------------------------------------------------------------------- /Expanding cards/img/img3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mo-renike/50Javascript-projects/HEAD/Expanding cards/img/img3.jpg -------------------------------------------------------------------------------- /Expanding cards/img/img4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mo-renike/50Javascript-projects/HEAD/Expanding cards/img/img4.png -------------------------------------------------------------------------------- /Expanding cards/img/img5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mo-renike/50Javascript-projects/HEAD/Expanding cards/img/img5.png -------------------------------------------------------------------------------- /Expanding cards/img/img6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mo-renike/50Javascript-projects/HEAD/Expanding cards/img/img6.png -------------------------------------------------------------------------------- /Expanding cards/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mo-renike/50Javascript-projects/HEAD/Expanding cards/index.html -------------------------------------------------------------------------------- /Expanding cards/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mo-renike/50Javascript-projects/HEAD/Expanding cards/script.js -------------------------------------------------------------------------------- /Expanding cards/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mo-renike/50Javascript-projects/HEAD/Expanding cards/style.css -------------------------------------------------------------------------------- /FAQ/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mo-renike/50Javascript-projects/HEAD/FAQ/.vscode/settings.json -------------------------------------------------------------------------------- /FAQ/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mo-renike/50Javascript-projects/HEAD/FAQ/index.html -------------------------------------------------------------------------------- /FAQ/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mo-renike/50Javascript-projects/HEAD/FAQ/script.js -------------------------------------------------------------------------------- /FAQ/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mo-renike/50Javascript-projects/HEAD/FAQ/style.css -------------------------------------------------------------------------------- /Form input wave/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mo-renike/50Javascript-projects/HEAD/Form input wave/.vscode/settings.json -------------------------------------------------------------------------------- /Form input wave/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mo-renike/50Javascript-projects/HEAD/Form input wave/index.html -------------------------------------------------------------------------------- /Form input wave/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mo-renike/50Javascript-projects/HEAD/Form input wave/script.js -------------------------------------------------------------------------------- /Form input wave/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mo-renike/50Javascript-projects/HEAD/Form input wave/style.css -------------------------------------------------------------------------------- /Github Profiles/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mo-renike/50Javascript-projects/HEAD/Github Profiles/index.html -------------------------------------------------------------------------------- /Github Profiles/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mo-renike/50Javascript-projects/HEAD/Github Profiles/script.js -------------------------------------------------------------------------------- /Github Profiles/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mo-renike/50Javascript-projects/HEAD/Github Profiles/style.css -------------------------------------------------------------------------------- /Hidden search widget/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mo-renike/50Javascript-projects/HEAD/Hidden search widget/index.html -------------------------------------------------------------------------------- /Hidden search widget/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mo-renike/50Javascript-projects/HEAD/Hidden search widget/script.js -------------------------------------------------------------------------------- /Hidden search widget/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mo-renike/50Javascript-projects/HEAD/Hidden search widget/style.css -------------------------------------------------------------------------------- /Increment Counter/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mo-renike/50Javascript-projects/HEAD/Increment Counter/.vscode/settings.json -------------------------------------------------------------------------------- /Increment Counter/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mo-renike/50Javascript-projects/HEAD/Increment Counter/index.html -------------------------------------------------------------------------------- /Increment Counter/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mo-renike/50Javascript-projects/HEAD/Increment Counter/script.js -------------------------------------------------------------------------------- /Increment Counter/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mo-renike/50Javascript-projects/HEAD/Increment Counter/style.css -------------------------------------------------------------------------------- /KeyCodes/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mo-renike/50Javascript-projects/HEAD/KeyCodes/.vscode/settings.json -------------------------------------------------------------------------------- /KeyCodes/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mo-renike/50Javascript-projects/HEAD/KeyCodes/index.html -------------------------------------------------------------------------------- /KeyCodes/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mo-renike/50Javascript-projects/HEAD/KeyCodes/script.js -------------------------------------------------------------------------------- /KeyCodes/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mo-renike/50Javascript-projects/HEAD/KeyCodes/style.css -------------------------------------------------------------------------------- /Mini mani mo/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mo-renike/50Javascript-projects/HEAD/Mini mani mo/.vscode/settings.json -------------------------------------------------------------------------------- /Mini mani mo/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mo-renike/50Javascript-projects/HEAD/Mini mani mo/index.html -------------------------------------------------------------------------------- /Mini mani mo/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mo-renike/50Javascript-projects/HEAD/Mini mani mo/script.js -------------------------------------------------------------------------------- /Mini mani mo/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mo-renike/50Javascript-projects/HEAD/Mini mani mo/style.css -------------------------------------------------------------------------------- /Movie App/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mo-renike/50Javascript-projects/HEAD/Movie App/index.html -------------------------------------------------------------------------------- /Movie App/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mo-renike/50Javascript-projects/HEAD/Movie App/script.js -------------------------------------------------------------------------------- /Movie App/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mo-renike/50Javascript-projects/HEAD/Movie App/style.css -------------------------------------------------------------------------------- /Preset files/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mo-renike/50Javascript-projects/HEAD/Preset files/index.html -------------------------------------------------------------------------------- /Preset files/script.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Preset files/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mo-renike/50Javascript-projects/HEAD/Preset files/style.css -------------------------------------------------------------------------------- /Progress steps/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mo-renike/50Javascript-projects/HEAD/Progress steps/.vscode/settings.json -------------------------------------------------------------------------------- /Progress steps/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mo-renike/50Javascript-projects/HEAD/Progress steps/index.html -------------------------------------------------------------------------------- /Progress steps/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mo-renike/50Javascript-projects/HEAD/Progress steps/script.js -------------------------------------------------------------------------------- /Progress steps/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mo-renike/50Javascript-projects/HEAD/Progress steps/style.css -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mo-renike/50Javascript-projects/HEAD/README.md -------------------------------------------------------------------------------- /Rotate slide effect/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mo-renike/50Javascript-projects/HEAD/Rotate slide effect/.vscode/settings.json -------------------------------------------------------------------------------- /Rotate slide effect/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mo-renike/50Javascript-projects/HEAD/Rotate slide effect/index.html -------------------------------------------------------------------------------- /Rotate slide effect/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mo-renike/50Javascript-projects/HEAD/Rotate slide effect/script.js -------------------------------------------------------------------------------- /Rotate slide effect/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mo-renike/50Javascript-projects/HEAD/Rotate slide effect/style.css -------------------------------------------------------------------------------- /Scroll animation/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mo-renike/50Javascript-projects/HEAD/Scroll animation/.vscode/settings.json -------------------------------------------------------------------------------- /Scroll animation/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mo-renike/50Javascript-projects/HEAD/Scroll animation/index.html -------------------------------------------------------------------------------- /Scroll animation/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mo-renike/50Javascript-projects/HEAD/Scroll animation/script.js -------------------------------------------------------------------------------- /Scroll animation/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mo-renike/50Javascript-projects/HEAD/Scroll animation/style.css -------------------------------------------------------------------------------- /Sound Board/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mo-renike/50Javascript-projects/HEAD/Sound Board/.vscode/settings.json -------------------------------------------------------------------------------- /Sound Board/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mo-renike/50Javascript-projects/HEAD/Sound Board/index.html -------------------------------------------------------------------------------- /Sound Board/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mo-renike/50Javascript-projects/HEAD/Sound Board/script.js -------------------------------------------------------------------------------- /Sound Board/sounds/sound-board_sounds_applause.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mo-renike/50Javascript-projects/HEAD/Sound Board/sounds/sound-board_sounds_applause.mp3 -------------------------------------------------------------------------------- /Sound Board/sounds/sound-board_sounds_boo.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mo-renike/50Javascript-projects/HEAD/Sound Board/sounds/sound-board_sounds_boo.mp3 -------------------------------------------------------------------------------- /Sound Board/sounds/sound-board_sounds_gasp.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mo-renike/50Javascript-projects/HEAD/Sound Board/sounds/sound-board_sounds_gasp.mp3 -------------------------------------------------------------------------------- /Sound Board/sounds/sound-board_sounds_tada.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mo-renike/50Javascript-projects/HEAD/Sound Board/sounds/sound-board_sounds_tada.mp3 -------------------------------------------------------------------------------- /Sound Board/sounds/sound-board_sounds_victory.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mo-renike/50Javascript-projects/HEAD/Sound Board/sounds/sound-board_sounds_victory.mp3 -------------------------------------------------------------------------------- /Sound Board/sounds/sound-board_sounds_wrong.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mo-renike/50Javascript-projects/HEAD/Sound Board/sounds/sound-board_sounds_wrong.mp3 -------------------------------------------------------------------------------- /Sound Board/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mo-renike/50Javascript-projects/HEAD/Sound Board/style.css -------------------------------------------------------------------------------- /Split Landing page/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mo-renike/50Javascript-projects/HEAD/Split Landing page/.vscode/settings.json -------------------------------------------------------------------------------- /Split Landing page/img/grand.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mo-renike/50Javascript-projects/HEAD/Split Landing page/img/grand.jpg -------------------------------------------------------------------------------- /Split Landing page/img/upright.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mo-renike/50Javascript-projects/HEAD/Split Landing page/img/upright.jpg -------------------------------------------------------------------------------- /Split Landing page/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mo-renike/50Javascript-projects/HEAD/Split Landing page/index.html -------------------------------------------------------------------------------- /Split Landing page/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mo-renike/50Javascript-projects/HEAD/Split Landing page/script.js -------------------------------------------------------------------------------- /Split Landing page/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mo-renike/50Javascript-projects/HEAD/Split Landing page/style.css -------------------------------------------------------------------------------- /Sticky Navbar/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mo-renike/50Javascript-projects/HEAD/Sticky Navbar/index.html -------------------------------------------------------------------------------- /Sticky Navbar/script.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Sticky Navbar/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mo-renike/50Javascript-projects/HEAD/Sticky Navbar/style.css -------------------------------------------------------------------------------- /Sticky Navbar/style.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mo-renike/50Javascript-projects/HEAD/Sticky Navbar/style.css.map -------------------------------------------------------------------------------- /Sticky Navbar/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mo-renike/50Javascript-projects/HEAD/Sticky Navbar/style.scss -------------------------------------------------------------------------------- /Toast Notofication/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mo-renike/50Javascript-projects/HEAD/Toast Notofication/index.html -------------------------------------------------------------------------------- /Toast Notofication/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mo-renike/50Javascript-projects/HEAD/Toast Notofication/script.js -------------------------------------------------------------------------------- /Toast Notofication/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mo-renike/50Javascript-projects/HEAD/Toast Notofication/style.css -------------------------------------------------------------------------------- /Vertical SLider/img/blackGirl.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mo-renike/50Javascript-projects/HEAD/Vertical SLider/img/blackGirl.JPG -------------------------------------------------------------------------------- /Vertical SLider/img/gold.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mo-renike/50Javascript-projects/HEAD/Vertical SLider/img/gold.JPG -------------------------------------------------------------------------------- /Vertical SLider/img/mama.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mo-renike/50Javascript-projects/HEAD/Vertical SLider/img/mama.JPG -------------------------------------------------------------------------------- /Vertical SLider/img/pupleDresss.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mo-renike/50Javascript-projects/HEAD/Vertical SLider/img/pupleDresss.JPG -------------------------------------------------------------------------------- /Vertical SLider/img/white wedding.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mo-renike/50Javascript-projects/HEAD/Vertical SLider/img/white wedding.JPG -------------------------------------------------------------------------------- /Vertical SLider/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mo-renike/50Javascript-projects/HEAD/Vertical SLider/index.html -------------------------------------------------------------------------------- /Vertical SLider/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mo-renike/50Javascript-projects/HEAD/Vertical SLider/script.js -------------------------------------------------------------------------------- /Vertical SLider/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mo-renike/50Javascript-projects/HEAD/Vertical SLider/style.css -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mo-renike/50Javascript-projects/HEAD/index.html -------------------------------------------------------------------------------- /kinetic loader/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mo-renike/50Javascript-projects/HEAD/kinetic loader/index.html -------------------------------------------------------------------------------- /kinetic loader/script.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /kinetic loader/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mo-renike/50Javascript-projects/HEAD/kinetic loader/style.css --------------------------------------------------------------------------------