-
Notifications
You must be signed in to change notification settings - Fork 138
Expand file tree
/
Copy pathindex.html
More file actions
85 lines (80 loc) · 3.92 KB
/
index.html
File metadata and controls
85 lines (80 loc) · 3.92 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8"> <!-- Specifies the character encoding for the HTML document -->
<meta name="viewport" content="width=device-width, initial-scale=1.0"> <!-- Ensures the page is responsive to different screen sizes -->
<title>Spotify Clone</title> <!-- Title of the webpage displayed in the browser tab -->
<link rel="stylesheet" href="styles/style.css"> <!-- Link to the external CSS file for styling the webpage -->
</head>
<body>
<!-- Navbar -->
<nav>
<div class="logo">
<img src="images/spotify-logo.png" alt="Spotify Logo"> <!-- Displays the Spotify logo in the navbar -->
</div>
<ul class="nav-links">
<li><a href="#">Premium</a></li> <!-- Navbar link for "Premium" section -->
<li><a href="#">Discover</a></li> <!-- Navbar link for "Discover" section -->
<li><a href="#">Help</a></li> <!-- Navbar link for "Help" section -->
<li><a href="#">Download</a></li> <!-- Navbar link for "Download" section -->
</ul>
</nav>
<!-- Hero Section -->
<section class="hero-section">
<div class="hero-text">
<h1>Music for everyone</h1> <!-- Main heading in the hero section -->
<p>Spotify is now free on mobile, tablet and computer. <br> <!-- Subtext in the hero section -->
Listen to the right music, wherever you are.
</p>
<!-- <button>GET SPOTIFY FREE</button> --> <!-- Commented out button for the hero section -->
</div>
</section>
<!-- What is on Spotify Section -->
<section class="spotify-features">
<h2 class="header">What's on Spotify?</h2> <!-- Heading for the "What's on Spotify?" section -->
<div class="features-container">
<div class="feature">
<img src="./images/music-icon.png" alt="Feature 1"> <!-- Image icon for the first feature -->
<h2> Millions of Songs</h2> <!-- Title of the first feature -->
<p> There are millions of <br> songs on Spotify</p> <!-- Description of the first feature -->
</div>
<div class="feature">
<img src="./images/high-quality-icon.png" alt="Feature 2"> <!-- Image icon for the second feature -->
<h2>HD Music</h2> <!-- Title of the second feature -->
<p>Listen to music as if you <br> were listening live</p> <!-- Description of the second feature -->
</div>
<div class="feature">
<img src="./images/devices-icon.png" alt="Feature 3"> <!-- Image icon for the third feature -->
<h2> Stream Everywhere</h2> <!-- Title of the third feature -->
<p> Stream music on your <br> smartphone, tablet or <br> computer</p> <!-- Description of the third feature -->
</div>
</div>
</section>
<!-- Green Section -->
<section class="green-section">
<div class="content">
<div class="text">
<h2>It’s as yeezy as Kanye West.</h2> <!-- Heading for the green section -->
<div class="features">
<div class="feature-item">
<h3>Search</h3> <!-- Title for the "Search" feature -->
<p>Know what you want to listen to? Just search and hit play.</p> <!-- Description for the "Search" feature -->
</div>
<div class="feature-item">
<h3>Browse</h3> <!-- Title for the "Browse" feature -->
<p>Check out the latest charts, brand new releases, and great playlists for right now.</p> <!-- Description for the "Browse" feature -->
</div>
<div class="feature-item">
<h3>Discover</h3> <!-- Title for the "Discover" feature -->
<p>Enjoy new music every Monday with your own personal playlist. Or sit back and enjoy Radio.</p> <!-- Description for the "Discover" feature -->
</div>
</div>
</div>
<div class="image">
<img src="./images/spotify-app.jpg" alt="Spotify Player"> <!-- Image of the Spotify app/player -->
<img class="spotify-logo" src="./images/spotify-icon-white.png" alt="Spotify Logo"> <!-- Overlayed Spotify logo -->
</div>
</div>
</section>
</body>
</html>