audio player
by Ea Bangalore
HTML
<div class="audio-player-wrapper">
<span class="close-button">x</span>
<audio controls id="music" preload="auto" title="Testing" type="audio/mp3" poster="" src="https://amazingaudioplayer.com/wp-content/uploads/amazingaudioplayer/7/audios/In the Moment of Inspiration.mp3">
</audio>
</div>
CSS
.audio-player-wrapper{
width:310px;
/* height:70px; */
background:black;
position:relative;
}
.close-button{
position: absolute;
right: -3px;
color: red;
top: -19px;
font-size: 26px;
}