├── LICENSE ├── README.md ├── animated-navigation ├── README.md ├── demo.gif ├── index.html ├── script.js └── style.css ├── bookmark-app ├── README.md ├── demo.png ├── index.html ├── script.js └── style.css ├── calculator ├── README.md ├── demo.png ├── index.html ├── script.js └── style.css ├── custom-countdown ├── README.md ├── background.mp4 ├── demo.gif ├── giphy.gif ├── index.html ├── script.js └── style.css ├── form-validation ├── README.md ├── demo1.png ├── demo2.png ├── demo3.png ├── index.html ├── script.js └── style.css ├── github-user-data ├── 404.png ├── README.md ├── default-avatar.png ├── demo.png ├── index.html ├── script.js └── style.css ├── infinite-scroll ├── README.md ├── demo.gif ├── index.html ├── loader.svg ├── script.js └── style.css ├── joke-teller ├── README.md ├── demo.png ├── favicon.ico ├── index.html ├── robot.gif ├── script.js ├── style.css └── voiceRSS.js ├── light-dark-mode ├── README.md ├── img │ ├── undraw_conceptual_idea_dark.svg │ ├── undraw_conceptual_idea_light.svg │ ├── undraw_feeling_proud_dark.svg │ ├── undraw_feeling_proud_light.svg │ ├── undraw_proud_coder_dark.svg │ └── undraw_proud_coder_light.svg ├── index.html ├── script.js └── style.css ├── music-player ├── README.md ├── demo.png ├── img │ ├── jacinto-1.jpg │ ├── jacinto-2.jpg │ ├── jacinto-3.jpg │ └── metric-1.jpg ├── index.html ├── music │ ├── jacinto-1.mp3 │ ├── jacinto-2.mp3 │ ├── jacinto-3.mp3 │ └── metric-1.mp3 ├── script.js └── style.css ├── nasa-api-pictures ├── README.md ├── demo.png ├── index.html ├── rocket.svg ├── script.js └── style.css ├── paint-clone ├── README.md ├── demo.gif ├── index.html ├── jscolor.js ├── script.js └── style.css ├── picture-in-picture ├── README.md ├── index.html ├── script.js └── style.css ├── quote-generator ├── README.md ├── index.html ├── script.js └── style.css ├── spock-rock-game ├── README.md ├── confetti.js ├── demo.gif ├── index.html ├── script.js └── style.css └── video-player ├── README.md ├── demo.png ├── index.html ├── script.js ├── style.css └── video.mp4 /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinawebdev/javascript-projects/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinawebdev/javascript-projects/HEAD/README.md -------------------------------------------------------------------------------- /animated-navigation/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinawebdev/javascript-projects/HEAD/animated-navigation/README.md -------------------------------------------------------------------------------- /animated-navigation/demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinawebdev/javascript-projects/HEAD/animated-navigation/demo.gif -------------------------------------------------------------------------------- /animated-navigation/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinawebdev/javascript-projects/HEAD/animated-navigation/index.html -------------------------------------------------------------------------------- /animated-navigation/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinawebdev/javascript-projects/HEAD/animated-navigation/script.js -------------------------------------------------------------------------------- /animated-navigation/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinawebdev/javascript-projects/HEAD/animated-navigation/style.css -------------------------------------------------------------------------------- /bookmark-app/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinawebdev/javascript-projects/HEAD/bookmark-app/README.md -------------------------------------------------------------------------------- /bookmark-app/demo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinawebdev/javascript-projects/HEAD/bookmark-app/demo.png -------------------------------------------------------------------------------- /bookmark-app/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinawebdev/javascript-projects/HEAD/bookmark-app/index.html -------------------------------------------------------------------------------- /bookmark-app/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinawebdev/javascript-projects/HEAD/bookmark-app/script.js -------------------------------------------------------------------------------- /bookmark-app/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinawebdev/javascript-projects/HEAD/bookmark-app/style.css -------------------------------------------------------------------------------- /calculator/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinawebdev/javascript-projects/HEAD/calculator/README.md -------------------------------------------------------------------------------- /calculator/demo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinawebdev/javascript-projects/HEAD/calculator/demo.png -------------------------------------------------------------------------------- /calculator/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinawebdev/javascript-projects/HEAD/calculator/index.html -------------------------------------------------------------------------------- /calculator/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinawebdev/javascript-projects/HEAD/calculator/script.js -------------------------------------------------------------------------------- /calculator/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinawebdev/javascript-projects/HEAD/calculator/style.css -------------------------------------------------------------------------------- /custom-countdown/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinawebdev/javascript-projects/HEAD/custom-countdown/README.md -------------------------------------------------------------------------------- /custom-countdown/background.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinawebdev/javascript-projects/HEAD/custom-countdown/background.mp4 -------------------------------------------------------------------------------- /custom-countdown/demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinawebdev/javascript-projects/HEAD/custom-countdown/demo.gif -------------------------------------------------------------------------------- /custom-countdown/giphy.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinawebdev/javascript-projects/HEAD/custom-countdown/giphy.gif -------------------------------------------------------------------------------- /custom-countdown/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinawebdev/javascript-projects/HEAD/custom-countdown/index.html -------------------------------------------------------------------------------- /custom-countdown/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinawebdev/javascript-projects/HEAD/custom-countdown/script.js -------------------------------------------------------------------------------- /custom-countdown/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinawebdev/javascript-projects/HEAD/custom-countdown/style.css -------------------------------------------------------------------------------- /form-validation/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinawebdev/javascript-projects/HEAD/form-validation/README.md -------------------------------------------------------------------------------- /form-validation/demo1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinawebdev/javascript-projects/HEAD/form-validation/demo1.png -------------------------------------------------------------------------------- /form-validation/demo2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinawebdev/javascript-projects/HEAD/form-validation/demo2.png -------------------------------------------------------------------------------- /form-validation/demo3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinawebdev/javascript-projects/HEAD/form-validation/demo3.png -------------------------------------------------------------------------------- /form-validation/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinawebdev/javascript-projects/HEAD/form-validation/index.html -------------------------------------------------------------------------------- /form-validation/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinawebdev/javascript-projects/HEAD/form-validation/script.js -------------------------------------------------------------------------------- /form-validation/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinawebdev/javascript-projects/HEAD/form-validation/style.css -------------------------------------------------------------------------------- /github-user-data/404.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinawebdev/javascript-projects/HEAD/github-user-data/404.png -------------------------------------------------------------------------------- /github-user-data/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinawebdev/javascript-projects/HEAD/github-user-data/README.md -------------------------------------------------------------------------------- /github-user-data/default-avatar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinawebdev/javascript-projects/HEAD/github-user-data/default-avatar.png -------------------------------------------------------------------------------- /github-user-data/demo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinawebdev/javascript-projects/HEAD/github-user-data/demo.png -------------------------------------------------------------------------------- /github-user-data/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinawebdev/javascript-projects/HEAD/github-user-data/index.html -------------------------------------------------------------------------------- /github-user-data/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinawebdev/javascript-projects/HEAD/github-user-data/script.js -------------------------------------------------------------------------------- /github-user-data/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinawebdev/javascript-projects/HEAD/github-user-data/style.css -------------------------------------------------------------------------------- /infinite-scroll/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinawebdev/javascript-projects/HEAD/infinite-scroll/README.md -------------------------------------------------------------------------------- /infinite-scroll/demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinawebdev/javascript-projects/HEAD/infinite-scroll/demo.gif -------------------------------------------------------------------------------- /infinite-scroll/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinawebdev/javascript-projects/HEAD/infinite-scroll/index.html -------------------------------------------------------------------------------- /infinite-scroll/loader.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinawebdev/javascript-projects/HEAD/infinite-scroll/loader.svg -------------------------------------------------------------------------------- /infinite-scroll/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinawebdev/javascript-projects/HEAD/infinite-scroll/script.js -------------------------------------------------------------------------------- /infinite-scroll/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinawebdev/javascript-projects/HEAD/infinite-scroll/style.css -------------------------------------------------------------------------------- /joke-teller/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinawebdev/javascript-projects/HEAD/joke-teller/README.md -------------------------------------------------------------------------------- /joke-teller/demo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinawebdev/javascript-projects/HEAD/joke-teller/demo.png -------------------------------------------------------------------------------- /joke-teller/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinawebdev/javascript-projects/HEAD/joke-teller/favicon.ico -------------------------------------------------------------------------------- /joke-teller/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinawebdev/javascript-projects/HEAD/joke-teller/index.html -------------------------------------------------------------------------------- /joke-teller/robot.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinawebdev/javascript-projects/HEAD/joke-teller/robot.gif -------------------------------------------------------------------------------- /joke-teller/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinawebdev/javascript-projects/HEAD/joke-teller/script.js -------------------------------------------------------------------------------- /joke-teller/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinawebdev/javascript-projects/HEAD/joke-teller/style.css -------------------------------------------------------------------------------- /joke-teller/voiceRSS.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinawebdev/javascript-projects/HEAD/joke-teller/voiceRSS.js -------------------------------------------------------------------------------- /light-dark-mode/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinawebdev/javascript-projects/HEAD/light-dark-mode/README.md -------------------------------------------------------------------------------- /light-dark-mode/img/undraw_conceptual_idea_dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinawebdev/javascript-projects/HEAD/light-dark-mode/img/undraw_conceptual_idea_dark.svg -------------------------------------------------------------------------------- /light-dark-mode/img/undraw_conceptual_idea_light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinawebdev/javascript-projects/HEAD/light-dark-mode/img/undraw_conceptual_idea_light.svg -------------------------------------------------------------------------------- /light-dark-mode/img/undraw_feeling_proud_dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinawebdev/javascript-projects/HEAD/light-dark-mode/img/undraw_feeling_proud_dark.svg -------------------------------------------------------------------------------- /light-dark-mode/img/undraw_feeling_proud_light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinawebdev/javascript-projects/HEAD/light-dark-mode/img/undraw_feeling_proud_light.svg -------------------------------------------------------------------------------- /light-dark-mode/img/undraw_proud_coder_dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinawebdev/javascript-projects/HEAD/light-dark-mode/img/undraw_proud_coder_dark.svg -------------------------------------------------------------------------------- /light-dark-mode/img/undraw_proud_coder_light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinawebdev/javascript-projects/HEAD/light-dark-mode/img/undraw_proud_coder_light.svg -------------------------------------------------------------------------------- /light-dark-mode/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinawebdev/javascript-projects/HEAD/light-dark-mode/index.html -------------------------------------------------------------------------------- /light-dark-mode/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinawebdev/javascript-projects/HEAD/light-dark-mode/script.js -------------------------------------------------------------------------------- /light-dark-mode/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinawebdev/javascript-projects/HEAD/light-dark-mode/style.css -------------------------------------------------------------------------------- /music-player/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinawebdev/javascript-projects/HEAD/music-player/README.md -------------------------------------------------------------------------------- /music-player/demo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinawebdev/javascript-projects/HEAD/music-player/demo.png -------------------------------------------------------------------------------- /music-player/img/jacinto-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinawebdev/javascript-projects/HEAD/music-player/img/jacinto-1.jpg -------------------------------------------------------------------------------- /music-player/img/jacinto-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinawebdev/javascript-projects/HEAD/music-player/img/jacinto-2.jpg -------------------------------------------------------------------------------- /music-player/img/jacinto-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinawebdev/javascript-projects/HEAD/music-player/img/jacinto-3.jpg -------------------------------------------------------------------------------- /music-player/img/metric-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinawebdev/javascript-projects/HEAD/music-player/img/metric-1.jpg -------------------------------------------------------------------------------- /music-player/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinawebdev/javascript-projects/HEAD/music-player/index.html -------------------------------------------------------------------------------- /music-player/music/jacinto-1.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinawebdev/javascript-projects/HEAD/music-player/music/jacinto-1.mp3 -------------------------------------------------------------------------------- /music-player/music/jacinto-2.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinawebdev/javascript-projects/HEAD/music-player/music/jacinto-2.mp3 -------------------------------------------------------------------------------- /music-player/music/jacinto-3.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinawebdev/javascript-projects/HEAD/music-player/music/jacinto-3.mp3 -------------------------------------------------------------------------------- /music-player/music/metric-1.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinawebdev/javascript-projects/HEAD/music-player/music/metric-1.mp3 -------------------------------------------------------------------------------- /music-player/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinawebdev/javascript-projects/HEAD/music-player/script.js -------------------------------------------------------------------------------- /music-player/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinawebdev/javascript-projects/HEAD/music-player/style.css -------------------------------------------------------------------------------- /nasa-api-pictures/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinawebdev/javascript-projects/HEAD/nasa-api-pictures/README.md -------------------------------------------------------------------------------- /nasa-api-pictures/demo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinawebdev/javascript-projects/HEAD/nasa-api-pictures/demo.png -------------------------------------------------------------------------------- /nasa-api-pictures/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinawebdev/javascript-projects/HEAD/nasa-api-pictures/index.html -------------------------------------------------------------------------------- /nasa-api-pictures/rocket.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinawebdev/javascript-projects/HEAD/nasa-api-pictures/rocket.svg -------------------------------------------------------------------------------- /nasa-api-pictures/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinawebdev/javascript-projects/HEAD/nasa-api-pictures/script.js -------------------------------------------------------------------------------- /nasa-api-pictures/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinawebdev/javascript-projects/HEAD/nasa-api-pictures/style.css -------------------------------------------------------------------------------- /paint-clone/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinawebdev/javascript-projects/HEAD/paint-clone/README.md -------------------------------------------------------------------------------- /paint-clone/demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinawebdev/javascript-projects/HEAD/paint-clone/demo.gif -------------------------------------------------------------------------------- /paint-clone/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinawebdev/javascript-projects/HEAD/paint-clone/index.html -------------------------------------------------------------------------------- /paint-clone/jscolor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinawebdev/javascript-projects/HEAD/paint-clone/jscolor.js -------------------------------------------------------------------------------- /paint-clone/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinawebdev/javascript-projects/HEAD/paint-clone/script.js -------------------------------------------------------------------------------- /paint-clone/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinawebdev/javascript-projects/HEAD/paint-clone/style.css -------------------------------------------------------------------------------- /picture-in-picture/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinawebdev/javascript-projects/HEAD/picture-in-picture/README.md -------------------------------------------------------------------------------- /picture-in-picture/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinawebdev/javascript-projects/HEAD/picture-in-picture/index.html -------------------------------------------------------------------------------- /picture-in-picture/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinawebdev/javascript-projects/HEAD/picture-in-picture/script.js -------------------------------------------------------------------------------- /picture-in-picture/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinawebdev/javascript-projects/HEAD/picture-in-picture/style.css -------------------------------------------------------------------------------- /quote-generator/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinawebdev/javascript-projects/HEAD/quote-generator/README.md -------------------------------------------------------------------------------- /quote-generator/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinawebdev/javascript-projects/HEAD/quote-generator/index.html -------------------------------------------------------------------------------- /quote-generator/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinawebdev/javascript-projects/HEAD/quote-generator/script.js -------------------------------------------------------------------------------- /quote-generator/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinawebdev/javascript-projects/HEAD/quote-generator/style.css -------------------------------------------------------------------------------- /spock-rock-game/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinawebdev/javascript-projects/HEAD/spock-rock-game/README.md -------------------------------------------------------------------------------- /spock-rock-game/confetti.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinawebdev/javascript-projects/HEAD/spock-rock-game/confetti.js -------------------------------------------------------------------------------- /spock-rock-game/demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinawebdev/javascript-projects/HEAD/spock-rock-game/demo.gif -------------------------------------------------------------------------------- /spock-rock-game/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinawebdev/javascript-projects/HEAD/spock-rock-game/index.html -------------------------------------------------------------------------------- /spock-rock-game/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinawebdev/javascript-projects/HEAD/spock-rock-game/script.js -------------------------------------------------------------------------------- /spock-rock-game/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinawebdev/javascript-projects/HEAD/spock-rock-game/style.css -------------------------------------------------------------------------------- /video-player/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinawebdev/javascript-projects/HEAD/video-player/README.md -------------------------------------------------------------------------------- /video-player/demo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinawebdev/javascript-projects/HEAD/video-player/demo.png -------------------------------------------------------------------------------- /video-player/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinawebdev/javascript-projects/HEAD/video-player/index.html -------------------------------------------------------------------------------- /video-player/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinawebdev/javascript-projects/HEAD/video-player/script.js -------------------------------------------------------------------------------- /video-player/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinawebdev/javascript-projects/HEAD/video-player/style.css -------------------------------------------------------------------------------- /video-player/video.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinawebdev/javascript-projects/HEAD/video-player/video.mp4 --------------------------------------------------------------------------------