HTML comment Box #183828
kgfkevat7-code
started this conversation in
Discover
HTML comment Box
#183828
Replies: 1 comment
-
|
try this buddy u i'll love it. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
cartoon-music-website/
<title>Cartoon Music World</title>│── index.html
│── style.css
│── script.js
│── music.mp3 (आप कोई भी mp3 रख सकते हैं)
🎵 Cartoon Music World 🎵
Enjoy Music with Fun
.container {
padding: 20px;
}
h1 {
color: #ff1744;
font-size: 40px;
}
.player {
background: white;
border-radius: 20px;
padding: 20px;
display: inline-block;
box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}
.player img {
width: 150px;
animation: bounce 2s infinite;
}
@Keyframes bounce {
0%,100% {transform: translateY(0);}
50% {transform: translateY(-15px);}
}
.buttons button {
padding: 10px 20px;
margin: 10px;
border: none;
border-radius: 20px;
font-size: 18px;
cursor: pointer;
background: #4caf50;
color: white;
}
.buttons button:hover {
background: #388e3c;
}
.social {
margin-top: 20px;
}
.social a {
display: inline-block;
margin: 8px;
padding: 10px 15px;
border-radius: 20px;
color: white;
text-decoration: none;
}
.yt { background: red; }
.ig { background: purple; }
.fb { background: blue; }
.wa { background: green; }const music = document.getElementById("music");
function playMusic() {
music.play();
}
function pauseMusic() {
music.pause();
}
Beta Was this translation helpful? Give feedback.
All reactions