-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
259 lines (244 loc) · 9.43 KB
/
index.html
File metadata and controls
259 lines (244 loc) · 9.43 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
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
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
<!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" />
<link rel="stylesheet" type="text/css" href="main.css" />
<title>Memory Albums</title>
</head>
<body>
<h1>Lives: <span class="playerLivesCount"></span></h1>
<section class="memory-game">
<!--Paul's Boutique-->
<div class="memory-card" data-framework="bboys">
<img
class="front-face"
src="images/bboys.jpeg"
alt="Paul's Boutique"
/>
<img class="back-face" src="images/cassette.jpeg" alt="Back of Card" />
</div>
<div class="memory-card" data-framework="bboys">
<img
class="front-face"
src="images/bboys.jpeg"
alt="Paul's Boutique"
/>
<img class="back-face" src="images/cassette.jpeg" alt="Back of Card" />
</div>
<!--Debut-->
<div class="memory-card" data-framework="bjork">
<img
class="front-face"
src="images/bjork.jpeg"
alt="Debut"
/>
<img class="back-face" src="images/cassette.jpeg" alt="Back of Card" />
</div>
<div class="memory-card" data-framework="bjork">
<img
class="front-face"
src="images/bjork.jpeg"
alt="Debut"
/>
<img class="back-face" src="images/cassette.jpeg" alt="Back of Card" />
</div>
<!--Three Imaginary Boys-->
<div class="memory-card" data-framework="cure">
<img
class="front-face"
src="images/cure.jpeg"
alt="Three Imaginary Boys"
/>
<img class="back-face" src="images/cassette.jpeg" alt="Back of Card" />
</div>
<div class="memory-card" data-framework="cure">
<img
class="front-face"
src="images/cure.jpeg"
alt="Three Imaginary Boys"
/>
<img class="back-face" src="images/cassette.jpeg" alt="Back of Card" />
</div>
<!--Morrison Hotel-->
<div class="memory-card" data-framework="doors">
<img
class="front-face"
src="images/doors.jpeg"
alt="Morrison Hotel"
/>
<img class="back-face" src="images/cassette.jpeg" alt="Back of Card" />
</div>
<div class="memory-card" data-framework="doors">
<img
class="front-face"
src="images/doors.jpeg"
alt="Morrison Hotel"
/>
<img class="back-face" src="images/cassette.jpeg" alt="Back of Card" />
</div>
<!--Dark Side of the Moon-->
<div class="memory-card" data-framework="floyd">
<img
class="front-face"
src="images/floyd.jpeg"
alt="Dark Side of the Moon"
/>
<img class="back-face" src="images/cassette.jpeg" alt="Back of Card" />
</div>
<div class="memory-card" data-framework="floyd">
<img
class="front-face"
src="images/floyd.jpeg"
alt="Dark Side of the Moon"
/>
<img class="back-face" src="images/cassette.jpeg" alt="Back of Card" />
</div>
<!--Electric Ladyland-->
<div class="memory-card" data-framework="jimi">
<img
class="front-face"
src="images/jimi.jpeg"
alt="Electric Ladyland"
/>
<img class="back-face" src="images/cassette.jpeg" alt="Back of Card" />
</div>
<div class="memory-card" data-framework="jimi">
<img
class="front-face"
src="images/jimi.jpeg"
alt="Electric Ladyland"
/>
<img class="back-face" src="images/cassette.jpeg" alt="Back of Card" />
</div>
<!--Fever In Fever Out-->
<div class="memory-card" data-framework="lusciousj">
<img
class="front-face"
src="images/lusciousj.jpeg"
alt="Fever In Fever Out"
/>
<img class="back-face" src="images/cassette.jpeg" alt="Back of Card" />
</div>
<div class="memory-card" data-framework="lusciousj">
<img
class="front-face"
src="images/lusciousj.jpeg"
alt="Fever In Fever Out"
/>
<img class="back-face" src="images/cassette.jpeg" alt="Back of Card" />
</div>
<!--Like A Virgin-->
<div class="memory-card" data-framework="madonna">
<img
class="front-face"
src="images/madonna.jpeg"
alt="Like A Virgin"
/>
<img class="back-face" src="images/cassette.jpeg" alt="Back of Card" />
</div>
<div class="memory-card" data-framework="madonna">
<img
class="front-face"
src="images/madonna.jpeg"
alt="Like A Virgin"
/>
<img class="back-face" src="images/cassette.jpeg" alt="Back of Card" />
</div>
<!--Legend-->
<div class="memory-card" data-framework="marley">
<img
class="front-face"
src="images/marley.jpeg"
alt="Legend"
/>
<img class="back-face" src="images/cassette.jpeg" alt="Back of Card" />
</div>
<div class="memory-card" data-framework="marley">
<img
class="front-face"
src="images/marley.jpeg"
alt="Legend"
/>
<img class="back-face" src="images/cassette.jpeg" alt="Back of Card" />
</div>
<!--One Hot Minute-->
<div class="memory-card" data-framework="redhot">
<img
class="front-face"
src="images/redhot.jpeg"
alt="One Hot Minute"
/>
<img class="back-face" src="images/cassette.jpeg" alt="Back of Card" />
</div>
<div class="memory-card" data-framework="redhot">
<img
class="front-face"
src="images/redhot.jpeg"
alt="One Hot Minute"
/>
<img class="back-face" src="images/cassette.jpeg" alt="Back of Card" />
</div>
<!--The Low End Theory-->
<div class="memory-card" data-framework="tribe">
<img
class="front-face"
src="images/tribe.jpeg"
alt="The Low End Theory"
/>
<img class="back-face" src="images/cassette.jpeg" alt="Back of Card" />
</div>
<div class="memory-card" data-framework="tribe">
<img
class="front-face"
src="images/tribe.jpeg"
alt="The Low End Theory"
/>
<img class="back-face" src="images/cassette.jpeg" alt="Back of Card" />
</div>
<!--The Joshua Tree-->
<div class="memory-card" data-framework="u2">
<img class="front-face"
src="images/u2.jpeg"
alt="The Joshua Tree"
/>
<img class="back-face" src="images/cassette.jpeg" alt="Back of Card" />
</div>
<div class="memory-card" data-framework="u2">
<img class="front-face"
src="images/u2.jpeg"
alt="The Joshua Tree"
/>
<img class="back-face" src="images/cassette.jpeg" alt="Back of Card" />
</div>
</section>
<script src="main.js"></script>
</body>
</html>
<!--Shatan, Jeremy. Cover art for the Paul's Boutique album by the Beastie Boys. 1989. Record label: Capitol.<br>
[bboys.jpeg image source](https://beastieboys.com/discography/)
Me Company. Cover art for the Debut album by Björk. 1993. Record label: One Little Indian.<br>
[bjork.jpeg image source](https://shop.bjork.com/product/bjork-debut/)
Jude, Phil. Cover art for the Three Imaginary Boys album by The Cure. 1979. Record label: Fiction.<br>
[cure.jpeg image source](https://www.thecure.com/release/three-imaginary-boys/)
Diltz, Henry. Cover art for the Morrison Hotel album by The Doors. 1970. Record label: Elektra.<br>
[doors.jpeg image source](https://thedoors.com/music)
Thorgerson, Storm and Hipgnosis. Cover art for the Dark Side of the Moon album by Pink Floyd. 1973. Record label: Harvest.<br>
[floyd.jpeg image source](https://www.pinkfloyd.com/design/album_covers.php)
Havlicek, Karl and Kosh. Cover art for the Electric Ladyland album by the Jimi Hendrix Experience. 1968. Record label: Reprise Records.<br>
[jimi.jpeg image source](https://www.jimihendrix.com/music/electric-ladyland-cddvd-deluxe-vinyl-editions/#content)
Smith, Jill Cunniff and Roni Size. Cover art for the Fever In Fever Out album by Luscious Jackson. 1996. Record label: Grand Royal/Capitol Records.<br>
[lusciousj.jpeg image source](https://lusciousjackson.us/)
Ayeroff, Jeffrey Kent and Jeri Heiden. Cover art for the Like a Virgin album by Madonna. 1984. Record label: Sire Records.<br>
[madonna.jpeg image source](https://www.madonna.com/discography/album/2/)
Garrick, Neville. Cover art for the Legend: The Best of Bob Marley and the Wailers album. 1984. Record label: Island.<br>
[marley.jpeg image source](https://www.bobmarley.com/release/legend/)
Gottlieb, Kevin. Cover art for the One Hot Minute album by Red Hot Chili Peppers. 1995. Record label: Warner Bros. Records.<br>
[redhot.jpeg image source](https://redhotchilipeppers.com/music/)
Gravillis, Kenny. Cover art for The Low End Theory album by A Tribe Called Quest. 1991. Record label: Jive.<br>
[tribe.jpeg image source](https://atribecalledquest.com/home/portfolio/the-low-end-theory/)
Averill, Steve. Cover art for The Joshua Tree album by U2. 1987. Record label: Island.<br>
[u2.jpeg image source](https://www.u2.com/music)
Used for back of card:<br>
[cassette.jpeg image source](https://pixabay.com/photos/announcer-audio-neon-cassette-316585/)-->