<!doctype html> <html lang="en"> <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> <link rel="stylesheet" href="./styles.css" type="text/css" /> <title>Music Player</title> </head> <body> <div class="currently-playing"> <span class="track-title"> Lindsey Sterling - Elements </span> <span class="player-status">[paused]</span> </div> <div class="controls"><button class="play-pause">Pause</button></div> <div class="track-list"> <div class="track-list__grouping"> <ul class="bulletless-list"> <li> By Artist </li> <li> By Album </li> <li> Work Music </li> <li> Dance Music </li> </ul> </div> <div class="track-list__tracks"> <table> <thead> <tr> <th> id </th> <th> Track # </th> <th> Title </th> <th> Artist </th> <th> Album </th> <th> Length </th> </tr> </thead> <tbody> <!-- <tr class="track-list__track-row"> <td> 1 </td> <td> Underground </td> <td> Lindsey Stirling </td> <td> Artemis </td> <td> 4:24 </td> </tr> <tr class="track-list__track-row"> <td> 2 </td> <td> Artemis </td> <td> Lindsey Stirling </td> <td> Artemis </td> <td> 3:54 </td> </tr> <tr class="track-list__track-row"> <td> 3 </td> <td> Til the Light Goes Out </td> <td> Lindsey Stirling </td> <td> Artemis </td> <td> 4:46 </td> </tr> <tr class="track-list__track-row"> <td> 4 </td> <td> Between Twilight </td> <td> Lindsey Stirling </td> <td> Artemis </td> <td> 4:20 </td> </tr> <tr class="track-list__track-row"> <td> 5 </td> <td> Foreverglow </td> <td> Lindsey Stirling </td> <td> Artemis </td> <td> 3:58 </td> </tr> --> </tbody> </table> </div> </div> <script src="./bundle.js" type="module"></script> </body> </html>