-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
117 lines (74 loc) · 2.66 KB
/
index.html
File metadata and controls
117 lines (74 loc) · 2.66 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
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
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Spotify Mood Playlist</title>
<!-- Bootstrap -->
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/css/bootstrap.min.css" rel="stylesheet">
<!-- Google Font -->
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700&display=swap" rel="stylesheet">
<!-- Custom CSS -->
<link rel="stylesheet" href="styles.css">
</head>
<body>
<!-- ===================================================== -->
<!-- HERO SECTION (100vh) -->
<!-- Professional Spotify-style landing section -->
<!-- ===================================================== -->
<section class="hero d-flex align-items-center justify-content-center text-center">
<div class="hero-overlay"></div>
<div class="hero-content container">
<h1 class="hero-title">Music for Every Mood</h1>
<p class="hero-subtitle">
Select your mood and experience a personalized Spotify playlist powered by JavaScript logic.
</p>
<button class="btn spotify-btn mt-3" onclick="scrollToApp()">
Try the Prototype
</button>
</div>
</section>
<!-- ===================================================== -->
<!-- APP SECTION -->
<!-- Student Activity Area -->
<!-- ===================================================== -->
<section id="app" class="app-section container-fluid">
<div class="row">
<!-- Sidebar -->
<div class="col-md-2 sidebar">
<h4 class="logo">Spotify</h4>
<p>Home</p>
<p>Search</p>
<p>Your Library</p>
<hr>
<p>Create Playlist</p>
<p>Liked Songs</p>
</div>
<!-- Main Content -->
<div class="col-md-10 main-content">
<h2>Mood-Based Playlist Generator</h2>
<p class="text-secondary">
Choose a mood to dynamically generate a playlist.
</p>
<!-- Mood Selector -->
<select id="mood-selector" class="form-select w-50 mb-3">
<option value="">Select a mood</option>
<option value="focus">Focus</option>
<option value="chill">Chill</option>
<option value="hype">Hype</option>
</select>
<!-- Feedback -->
<div id="feedback" class="feedback-box">
Your personalized playlist will appear here.
</div>
<!-- Playlist -->
<div class="playlist-box mt-4">
<h4>Playlist</h4>
<div id="playlist-container"></div>
</div>
</div>
</div>
</section>
<!-- JS File -->
<script src="script.js"></script>
</body>
</html>