-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
147 lines (136 loc) · 4.19 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Albums I Enjoy</title>
<meta charset="UTF-8" />
<link rel="stylesheet" href="./assets/styles.css" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
</head>
<body>
<header>
<h1>Albums That I Enjoy</h1>
<h3 style="text-align:center">by <a href="https://notneelpatel.github.io">neel patel</a> | <a href="https://github.com/NotNeelPatel/Albums"> GitHub Repo</a></h3>
<h4 id="num-albums" style="text-align:center">A collection of 100+ hand-picked albums</h4>
<br />
<br />
</header>
<div class="search-wrapper">
<div id="sliders">
<p>popularity</p>
<div id="box-slider-val">
<input type="checkbox" id="checkbox-popularity" checked onclick="enable_checkbox('popularity') " />
<input
type="range"
min="0"
max="10"
value="5"
id="popularity-slider"
class="slider"
/>
<p><span id="popularity-value">5</span></p>
</div>
<p>acousticness</p>
<div id="box-slider-val">
<input type="checkbox" id="checkbox-acousticness" checked onclick="enable_checkbox('acousticness')" />
<input
type="range"
min="0"
max="10"
value="5"
id="acousticness-slider"
class="slider"
/>
<p><span id="acousticness-value">5</span></p>
</div>
<p>danceability</p>
<div id="box-slider-val">
<input type="checkbox" id="checkbox-danceability" checked onclick="enable_checkbox('danceability')" />
<input
type="range"
min="0"
max="10"
value="5"
id="danceability-slider"
class="slider"
/>
<p><span id="danceability-value">5</span></p>
</div>
<p>energy</p>
<div id="box-slider-val">
<input type="checkbox" id="checkbox-energy" checked onclick="enable_checkbox('energy')" />
<input
type="range"
min="0"
max="10"
value="5"
id="energy-slider"
class="slider"
/>
<p><span id="energy-value">5</span></p>
</div>
<p>instrumentalness</p>
<div id="box-slider-val">
<input type="checkbox" id="checkbox-instrumentalness" checked onclick="enable_checkbox('instrumentalness')" />
<input
type="range"
min="0"
max="10"
value="5"
id="instrumentalness-slider"
class="slider"
/>
<p><span id="instrumentalness-value">5</span></p>
</div>
<p>happiness</p>
<div id="box-slider-val">
<input type="checkbox" id="checkbox-valence" checked onclick="enable_checkbox('valence')" />
<input
type="range"
min="0"
max="10"
value="5"
id="valence-slider"
class="slider"
/>
<p><span id="valence-value">5</span></p>
</div>
<div>
</div>
</div>
</div>
<br />
<input
style = "display:block; max-width: 100%;"
type="search"
placeholder="Search Album, Artist, Year, Genre"
name="search"
data-search
/>
<br />
<div id="AlbumList">
<div></div>
<div class="entries" data-entries-container></div>
<template data-template>
<div class="card">
<div id="card-grid">
<img class="img" src="#" data-img />
<div id="card-text">
<h2><a class="url" href="#" data-url></a></h2>
<h3 class="artist" data-artist></h3>
<h4 class="year" data-year></h4>
</div>
</div>
</div>
</template>
<div></div>
</div>
<script src="./script.js"></script>
<footer>
<ul>
<a href="https://notneelpatel.github.io">2023 Neel Patel</a>
<a>|</a>
<a href="https://github.com/NotNeelPatel/Albums">GitHub Repo</a>
</ul>
</footer>
</body>
</html>