Untitled

 avatar
unknown
plain_text
a month ago
1.6 kB
1
Indexable
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Popular Tracks</title>
    <style>
        body {
            font-family: Arial, sans-serif;
            background-color: #f4f4f4;
            margin: 0;
            padding: 20px;
        }
        header {
            background: #333;
            color: #fff;
            padding: 10px 0;
            text-align: center;
        }
        .track {
            background: #fff;
            margin: 10px 0;
            padding: 15px;
            border-radius: 5px;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
        }
        .track-title {
            font-size: 20px;
            font-weight: bold;
        }
        .track-artist {
            color: #555;
        }
    </style>
</head>
<body>
    <header>
        <h1>Popular Tracks</h1>
    </header>
    <div class="track">
        <div class="track-title">Track Title 1</div>
        <div class="track-artist">Artist Name 1</div>
        <audio controls>
            <source src="URL to track 1" type="audio/mpeg">
            Your browser does not support the audio element.
        </audio>
    </div>
    <div class="track">
        <div class="track-title">Track Title 2</div>
        <div class="track-artist">Artist Name 2</div>
        <audio controls>
            <source src="URL to track 2" type="audio/mpeg">
            Your browser does not support the audio element.
        </audio>
    </div>
    <!-- Add more tracks as needed -->
</body>
</html>
Editor is loading...
Leave a Comment