-
Notifications
You must be signed in to change notification settings - Fork 0
/
gallery.html
116 lines (115 loc) · 3.81 KB
/
gallery.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
<!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" />
<title>Gallery | TSFC</title>
<link rel="shortcut icon" href="media/logo.png" type="image/x-icon" />
<link rel="stylesheet" href="css/gallery.css" />
</head>
<body>
<div class="head">
<ul>
<li style="float: left"><a href="./index.html">Home</a></li>
<li><a href="./join.html">JoinUS</a></li>
<li><a href="./gallery.html" class="active">AlbumsGallery</a></li>
</ul>
<marquee behavior="alternate" direction="left">Swift's Albums</marquee>
</div>
<div class="body">
<div class="gallery">
<figure>
<img src="media/gallery/TaylorSwift.jpg" alt="" />
<figcaption>
<a
target="_blank"
href="https://www.youtube.com/watch?v=GkD20ajVxnY&list=PLmNBbA6iWg5doAzYA_e2Z2eopDRJRLsum"
>Taylor Swift (Oct24,2006)</a
>
</figcaption>
</figure>
<figure>
<img src="media/gallery/Fearless.png" alt="" />
<figcaption>
<a
target="_blank"
href="https://www.youtube.com/watch?v=eVNNfmr_vWI&list=PLfiMjLyNWxeYt0dH7BHSvCNCNsK_EfJeZ"
>Fearless (Nov11,2008)</a
>
</figcaption>
</figure>
<figure>
<img src="media/gallery/SpeakNow.jpg" alt="" />
<figcaption>
<a
target="_blank"
href="https://www.youtube.com/watch?v=0FxbMW_20sQ&list=PLXyy7K46bdw9rPyKnapkBBCUsVHD6aJLA"
>Speak Now (Oct25,2010)</a
>
</figcaption>
</figure>
<figure>
<img src="media/gallery/Red.png" alt="" />
<figcaption>
<a
target="_blank"
href="https://www.youtube.com/watch?v=gr4cqcqnAN0&list=PLxA687tYuMWitUXCzppRcz3Tvnc763PPB"
>Red (Oct22,2012)</a
>
</figcaption>
</figure>
<figure>
<img src="media/gallery/1989.png" alt="" />
<figcaption>
<a
target="_blank"
href="https://www.youtube.com/watch?v=RfjPHmgBPF0&list=PLc70MCJNmlIlTCG7GrWwltBI8DIAS5U_r"
>1989 (Oct27,2014)</a
>
</figcaption>
</figure>
<figure>
<img src="media/gallery/Reputation.png" alt="" />
<figcaption>
<a
target="_blank"
href="https://www.youtube.com/watch?v=T62maKYX9tU&list=PLV1bhAAf21cSxHaqUDyG1meQz3hUPi4eO"
>Reputation (Nov10,2017)</a
>
</figcaption>
</figure>
<figure>
<img src="media/gallery/Lover.png" alt="" />
<figcaption>
<a
target="_blank"
href="https://www.youtube.com/watch?v=p1cEvNn88jM&list=PLkqz3S84Tw-RdM_IQwtQrYJpkOmJH2Ngw"
>Lover (Aug23,2019)</a
>
</figcaption>
</figure>
<figure>
<img src="media/gallery/Folklore.png" alt="" />
<figcaption>
<a
target="_blank"
href="https://www.youtube.com/watch?v=KsZ6tROaVOQ&list=PLmU8B4gZ41icKdheg4d2KZBgDR1wSWfbH"
>Folklore (July24,2020)</a
>
</figcaption>
</figure>
<figure>
<img src="media/gallery/Evenmore.png" alt="" />
<figcaption>
<a
target="_blank"
href="https://www.youtube.com/watch?v=RsEZmictANA&list=PLmU8B4gZ41ifO00RpWcvv0vx_UEAyfx8U"
>Evenmore (Dec11,2020)</a
>
</figcaption>
</figure>
</div>
</div>
</body>
</html>