Skip to content

Commit

Permalink
Add files via upload
Browse files Browse the repository at this point in the history
  • Loading branch information
Nagendra10pratap authored Feb 13, 2024
1 parent c10df9d commit c6d689d
Showing 1 changed file with 190 additions and 0 deletions.
190 changes: 190 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,190 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Spotify - Your favourite music is here</title>
<link rel="stylesheet" href="style.css" />
</head>
<body>
<nav>
<ul>
<li class="brand"><img src="logo.png" alt="Spotify" /> Spotify</li>
<li>Home</li>
<li>About</li>
</ul>
</nav>

<div class="container">
<div class="songList">
<h1>Best of NCS - No Copyright Sounds</h1>
<div class="songItemContainer">
<div class="songItem">
<img alt="1" />
<span class="songName">Let me Love You</span>
<span class="songlistplay"
><span class="timestamp"
>05:34
<i id="0" class="far songItemPlay fa-play-circle"></i> </span>
</span>
</div>
<div class="songItem">
<img alt="1" />
<span class="songName">Let me Love You</span>
<span class="songlistplay"
><span class="timestamp"
>05:34
<i id="1" class="far songItemPlay fa-play-circle"></i> </span
></span>
</div>
<div class="songItem">
<img alt="1" />
<span class="songName">Let me Love You</span>
<span class="songlistplay"
><span class="timestamp"
>05:34
<i id="2" class="far songItemPlay fa-play-circle"></i> </span
></span>
</div>
<div class="songItem">
<img alt="1" />
<span class="songName">Let me Love You</span>
<span class="songlistplay"
><span class="timestamp"
>05:34
<i id="3" class="far songItemPlay fa-play-circle"></i> </span
></span>
</div>
<div class="songItem">
<img alt="1" />
<span class="songName">Let me Love You</span>
<span class="songlistplay"
><span class="timestamp"
>05:34
<i id="4" class="far songItemPlay fa-play-circle"></i> </span
></span>
</div>
<div class="songItem">
<img alt="1" />
<span class="songName">Let me Love You</span>
<span class="songlistplay"
><span class="timestamp"
>05:34
<i id="5" class="far songItemPlay fa-play-circle"></i> </span
></span>
</div>
<div class="songItem">
<img alt="1" />
<span class="songName">Let me Love You</span>
<span class="songlistplay"
><span class="timestamp"
>05:34
<i id="6" class="far songItemPlay fa-play-circle"></i> </span
></span>
</div>
<div class="songItem">
<img alt="1" />
<span class="songName">Let me Love You</span>
<span class="songlistplay"
><span class="timestamp"
>05:34
<i id="7" class="far songItemPlay fa-play-circle"></i> </span
></span>
</div>
<div class="songItem">
<img alt="1" />
<span class="songName">Let me Love You</span>
<span class="songlistplay"
><span class="timestamp"
>05:34
<i id="8" class="far songItemPlay fa-play-circle"></i> </span
></span>
</div>
<div class="songItem">
<img alt="1" />
<span class="songName">Let me Love You</span>
<span class="songlistplay"
><span class="timestamp"
>05:34
<i id="9" class="far songItemPlay fa-play-circle"></i> </span>
</span>
</span>
</div>
<div class="songItem">
<img alt="1" />
<span class="songName">Let me Love You</span>
<span class="songlistplay"
><span class="timestamp"
>05:34
<i id="10" class="far songItemPlay fa-play-circle"></i> </span>
</span>
</span>
</span>
</div>
<div class="songItem">
<img alt="1" />
<span class="songName">Let me Love You</span>
<span class="songlistplay"
><span class="timestamp"
>05:34
<i id="11" class="far songItemPlay fa-play-circle"></i> </span>
</span>
</span>
</span>
</span>
</div>
<div class="songItem">
<img alt="1" />
<span class="songName">Let me Love You</span>
<span class="songlistplay"
><span class="timestamp"
>05:34
<i id="12" class="far songItemPlay fa-play-circle"></i> </span>
</span>
</span>

</div>
<div class="songItem">
<img alt="13.jpg" />
<span class="songName">Let me Love You</span>
<span class="songlistplay"
><span class="timestamp"
>05:34
<i id="13" class="far songItemPlay fa-play-circle"></i> </span>
</span>
</div>

</div>
</div>
</div>
<div class="songBanner"></div>
</div>

<div class="bottom">
<input
type="range"
name="range"
id="myProgressBar"
min="0"
value="0"
max="100"
/>
<div class="icons">
<!-- fontawesome icons -->
<i class="fas fa-3x fa-step-backward" id="previous"></i>
<i class="far fa-3x fa-play-circle" id="masterPlay"></i>
<i class="fas fa-3x fa-step-forward" id="next"></i>
</div>
<div class="songInfo">
<img src="playing.gif" width="42px" alt="" id="gif" />
<span id="masterSongName">Warriyo - Mortals [NCS Release]</span>
</div>
</div>
<script src="script.js"></script>
<script
src="https://kit.fontawesome.com/26504e4a1f.js"
crossorigin="anonymous"
></script>
</body>
</html>

0 comments on commit c6d689d

Please sign in to comment.