Untitled
unknown
plain_text
10 months ago
2.1 kB
25
Indexable
<!DOCTYPE html>
<html>
<head>
<title>Mini Spotify</title>
<style>
body { font-family: Arial, sans-serif; margin: 0; background: #121212; color: white; }
header { background: #1db954; padding: 15px; text-align: center; font-size: 24px; font-weight: bold; }
.playlist { padding: 20px; }
.song { background: #282828; padding: 10px; margin: 10px 0; border-radius: 8px; display: flex; justify-content: space-between; }
button { background: #1db954; border: none; padding: 5px 10px; border-radius: 5px; cursor: pointer; }
</style>
</head>
<body>
<header>🎵 My Spotify Clone</header>
<div class="playlist">
<div class="song">
<span>Song 1 - Artist</span>
<button>â–¶ Play</button>
</div>
<div class="song">
<span>Song 2 - Artist</span>
<button>â–¶ Play</button>
</div>
<div class="song">
<span>Song 3 - Artist</span>
<button>â–¶ Play</button>
</div>
</div>
</body>
</html>Editor is loading...
Leave a Comment