├── images ├── crash.png ├── snare.png ├── tom1.png ├── tom2.png ├── tom3.png └── kickbass.png ├── sounds ├── crash.mp3 ├── snare.mp3 ├── tom1.mp3 ├── tom2.mp3 ├── tom3.mp3 └── kickbass.mp3 ├── README.md ├── index.html ├── styles.css └── index.js /images/crash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valmir-filho/drum-website-project/HEAD/images/crash.png -------------------------------------------------------------------------------- /images/snare.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valmir-filho/drum-website-project/HEAD/images/snare.png -------------------------------------------------------------------------------- /images/tom1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valmir-filho/drum-website-project/HEAD/images/tom1.png -------------------------------------------------------------------------------- /images/tom2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valmir-filho/drum-website-project/HEAD/images/tom2.png -------------------------------------------------------------------------------- /images/tom3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valmir-filho/drum-website-project/HEAD/images/tom3.png -------------------------------------------------------------------------------- /sounds/crash.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valmir-filho/drum-website-project/HEAD/sounds/crash.mp3 -------------------------------------------------------------------------------- /sounds/snare.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valmir-filho/drum-website-project/HEAD/sounds/snare.mp3 -------------------------------------------------------------------------------- /sounds/tom1.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valmir-filho/drum-website-project/HEAD/sounds/tom1.mp3 -------------------------------------------------------------------------------- /sounds/tom2.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valmir-filho/drum-website-project/HEAD/sounds/tom2.mp3 -------------------------------------------------------------------------------- /sounds/tom3.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valmir-filho/drum-website-project/HEAD/sounds/tom3.mp3 -------------------------------------------------------------------------------- /images/kickbass.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valmir-filho/drum-website-project/HEAD/images/kickbass.png -------------------------------------------------------------------------------- /sounds/kickbass.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valmir-filho/drum-website-project/HEAD/sounds/kickbass.mp3 -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Drum Website Project by 2023 Web Development Bootcamp Repository from Udemy. 2 | 3 | ## Content: 4 | 5 | - Drum Website Project developed by Dr. Angela Yu from Udemy. 6 | 7 | ### Used IDE: Visual Studio Code. 8 | -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |
5 | 6 |