Skip to content

Commit

Permalink
Update index.html
Browse files Browse the repository at this point in the history
  • Loading branch information
YashShende committed Feb 10, 2019
1 parent e37281b commit 3e58a91
Showing 1 changed file with 16 additions and 10 deletions.
26 changes: 16 additions & 10 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -10,39 +10,45 @@
<link rel="stylesheet" href="style.css">
<script src="script.js"></script>

<title>Today's Hitz</title>
<title>Document</title>
</head>
<body>
<div class='player'>
<div class='album-cover'>
<img src='https://images.pexels.com/photos/838696/pexels-photo-838696.jpeg?auto=compress&cs=tinysrgb&dpr=1&w=500' />
<div class='album-cover' id="image">

</div>
<div class='song-progress-bar'>
<div class='inner-bar'></div>
</div>
<div class='song-info'>
<h1 class='song-title'>Today's Hits</h1>
<h1 class='song-title' id="songTitle" >Today's Hits</h1>
<div class='song-band-wrapper'>
<p class='song-band'>Made with <i class="fas fa-heart"></i> By-<span class='album'> Yash</span></p>
</div>
</div>
<div class='player-buttons'>
<div class='playerbtn song-back'>
<i class="fa fa-backward" aria-hidden="true"></i>
<i class="fa fa-backward" aria-hidden="true" onclick="pre()"></i>
</div>
<div class='playerbtn playToggle'>
<i class="fa fa-play" aria-hidden="true" onclick="radioPlay()"></i>
<i class="fa fa-play" aria-hidden="true" onclick="playOrPauseSong()"></i>
</div>
<div class='playerbtn song-forward'>
<i class="fa fa-forward" aria-hidden="true"></i>
<i class="fa fa-forward" aria-hidden="true" onclick="next()"></i>
</div>
</div>
</div>
<audio id="rad">
<source src="http://rfcmedia.streamguys1.com/MusicPulse.mp3" type="audio/mp3">
<div>

<audio id="rad" src="http://rfcmedia.streamguys1.com/MusicPulse.mp3">


<!-- Radio Mirchi <source type="audio/mp3"> -->



</audio>
</audio>

</div>
</body>
</html>

0 comments on commit 3e58a91

Please sign in to comment.