-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcode.html
164 lines (156 loc) · 6.11 KB
/
code.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Spotify - Music</title>
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="responsive.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Mukta:wght@200;300;400;500;600;700;800&family=Poppins:wght@500&display=swap" rel="stylesheet">
</head>
<body>
<nav>
<img src="logo.png" alt="Spotify logo" />
<div class="searchBar">
<input type="text" placeholder="Search">
<img src="SearchIcon.png" alt="Search Icon" />
</div>
<div class="accessButtons">
<button type="button" class="SignUP">Sign UP</button>
<button type="button" class="SignIN">Log IN</button>
</div>
</nav>
<center>
<div class="overall">
<div class="sideBar">
<div class="card1">
<div class="homeSection">
<img src="Home.png" alt="Home" class="Home"/>
<p>Home</p>
</div>
<div class="bookmark">
<img src="Bookmark.png" alt="Bookmark">
<p>Saved Songs</p>
</div>
<div class="trending">
<img src="Ratings.png" alt="Trending">
<p>Trending Songs</p>
</div>
<div class="Liked">
<img src="Love.png" alt="Liked">
<p>Liked Songs</p>
</div>
<div class="Favorites">
<img src="Add to Favorites.png" alt="Trending">
<p>Favorite Artists</p>
</div>
</div>
<div class="card2">
<p class="headerCard2">Create Your First Playlist</p>
<p class="bodyCard2">It’s easy, we will help you out</p>
<button class="playlistButton">Playlist</button>
</div>
<div class="card3">
<p class="headerCard3">Lets find some podcast</p>
<p class="bodyCard3">We’ll provide best knowledge</p>
<button class="playlistButton">Podcast</button>
</div>
<div class="footerCard">
<div class="row1">
<p>Legal Policies</p>
<p>Privacy center</p>
<p>About Ads</p>
</div>
<div class="row2">
<p>Cookies</p>
<p>Cookies</p>
<p>Privacy Policies</p>
</div>
<div class="row3">
<p>@Copyright Spotify 2023</p>
</div>
<div class="row4">
<img src="Translation.png" >
<p>English</p>
</div>
</div>
</div>
<div class="mainContent">
<div class="mainContentHeader">
<img src="TrendingNow.png" alt="Trending"/>
<h1>TRENDING SONGS</h1>
</div>
<div class="mainContentBody">
<div class="box1">
<h6>Listen Gloabally</h6>
<p>Check out what’s trending around the world,so that you won’t miss anything</p>
<button type="button" class="globalBtn">Global</button>
</div>
<div class="box2">
<h6>Listen Around you</h6>
<p>Stay tuned for new additions that continue to broaden your auditory horizons and deepen.</p>
<button type="button" class="localBtn">Local</button>
</div>
</div>
<div class="mainContentfooter1">
<div class="heading">
<img src="MenuIcon.png">
<h1>BROWSE ALL</h1>
</div>
</div>
<div class="mainContentfooter2">
<div class="footerBox1">
<h1>Podcasts</h1>
<img src="PodcastImg.png">
</div>
<div class="footerBox2">
<h1>Live Events</h1>
<img src="LiveEvents.png">
</div>
<div class="footerBox3">
<h1>Made for You</h1>
<img src="MadeForYou.png">
</div>
<div class="footerBox4">
<h1>New Releases</h1>
<img src="MadeForYou.png"></div>
<div class="footerBox5">
<h1>Hindi</h1>
<img src="MadeForYou.png"></div>
<div class="footerBox6">
<h1>Punjabi</h1>
<img src="MadeForYou.png"></div>
</div>
<div class="mainContentfooter3">
<div class="footer3Box1">
<h1>Punjabi</h1>
<img src="PodcastImg.png">
</div>
<div class="footer3Box2">
<h1>Hindi</h1>
<img src="PodcastImg.png">
</div>
<div class="footer3Box3">
<h1>Marathi</h1>
<img src="PodcastImg.png">
</div>
<div class="footer3Box4">
<h1>English</h1>
<img src="PodcastImg.png">
</div>
<div class="footer3Box5">
<h1>Telgu</h1>
<img src="PodcastImg.png">
</div>
<div class="footer3Box6">
<h1>Desi Hits</h1>
<img src="PodcastImg.png">
</div>
</div>
</div>
</div>
</center>
</body>
</html>