-
Notifications
You must be signed in to change notification settings - Fork 0
/
Slideshow.html
276 lines (275 loc) · 25.1 KB
/
Slideshow.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
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
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
<!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>Document</title>
<style>
html, body {
height: 100%;
overflow: hidden;
text-align: center;
margin: 0;
}
body {
display: flex;
align-items: center;
justify-content: center;
background:
linear-gradient(120deg, rgba(255,0,0,0.8), rgba(255,0,0,0)),
linear-gradient(240deg, rgba(0,255,0,0.8), rgba(0,255,0,0)),
linear-gradient(360deg, rgba(0,0,255,0.8), rgba(0,255,0,0))
;
font-family: 'Georgia', sans-serif;
font-size: 16px;
}
.container::-webkit-scrollbar {
width: 10px;
height: 10px;
}
.container::-webkit-scrollbar-thumb {
background: black;
border-radius: 10px;
}
.container::-webkit-scrollbar-track {
background: transparent;
}
.slide::-webkit-scrollbar {
width: 10px;
height: 10px;
}
.slide::-webkit-scrollbar-thumb {
background: black;
border-radius: 10px;
}
.slide::-webkit-scrollbar-track {
background: transparent;
}
</style>
</head>
<body>
<div class="slideshow" style="width: 25vw;">
<a href="#slide-1" style="display: inline-flex; width: 1.5rem; height: 1.5rem; background: white; border: #f6e078 solid 2px; text-decoration: none; align-items: center; justify-content: center; border-radius: 50%; margin: 0.5rem 0.1rem;">1</a>
<a href="#slide-2" style="display: inline-flex; width: 1.5rem; height: 1.5rem; background: white; border: #f6e078 solid 2px; text-decoration: none; align-items: center; justify-content: center; border-radius: 50%; margin: 0.5rem 0.1rem;">2</a>
<a href="#slide-3" style="display: inline-flex; width: 1.5rem; height: 1.5rem; background: white; border: #f6e078 solid 2px; text-decoration: none; align-items: center; justify-content: center; border-radius: 50%; margin: 0.5rem 0.1rem;">3</a>
<a href="#slide-4" style="display: inline-flex; width: 1.5rem; height: 1.5rem; background: white; border: #f6e078 solid 2px; text-decoration: none; align-items: center; justify-content: center; border-radius: 50%; margin: 0.5rem 0.1rem;">4</a>
<a href="#slide-5" style="display: inline-flex; width: 1.5rem; height: 1.5rem; background: white; border: #f6e078 solid 2px; text-decoration: none; align-items: center; justify-content: center; border-radius: 50%; margin: 0.5rem 0.1rem;">5</a>
<a href="#slide-6" style="display: inline-flex; width: 1.5rem; height: 1.5rem; background: white; border: #f6e078 solid 2px; text-decoration: none; align-items: center; justify-content: center; border-radius: 50%; margin: 0.5rem 0.1rem;">6</a>
<a href="#slide-7" style="display: inline-flex; width: 1.5rem; height: 1.5rem; background: white; border: #f6e078 solid 2px; text-decoration: none; align-items: center; justify-content: center; border-radius: 50%; margin: 0.5rem 0.1rem;">7</a>
<a href="#slide-8" style="display: inline-flex; width: 1.5rem; height: 1.5rem; background: white; border: #f6e078 solid 2px; text-decoration: none; align-items: center; justify-content: center; border-radius: 50%; margin: 0.5rem 0.1rem;">8</a>
<a href="#slide-9" style="display: inline-flex; width: 1.5rem; height: 1.5rem; background: white; border: #f6e078 solid 2px; text-decoration: none; align-items: center; justify-content: center; border-radius: 50%; margin: 0.5rem 0.1rem;">9</a>
<a href="#slide-10" style="display: inline-flex; width: 1.5rem; height: 1.5rem; background: white; border: #f6e078 solid 2px; text-decoration: none; align-items: center; justify-content: center; border-radius: 50%; margin: 0.5rem 0.1rem;">10</a>
<a href="#slide-11" style="display: inline-flex; width: 1.5rem; height: 1.5rem; background: white; border: #f6e078 solid 2px; text-decoration: none; align-items: center; justify-content: center; border-radius: 50%; margin: 0.5rem 0.1rem;">11</a>
<a href="#slide-12" style="display: inline-flex; width: 1.5rem; height: 1.5rem; background: white; border: #f6e078 solid 2px; text-decoration: none; align-items: center; justify-content: center; border-radius: 50%; margin: 0.5rem 0.1rem;">12</a>
<a href="#slide-13" style="display: inline-flex; width: 1.5rem; height: 1.5rem; background: white; border: #f6e078 solid 2px; text-decoration: none; align-items: center; justify-content: center; border-radius: 50%; margin: 0.5rem 0.1rem;">13</a>
<div class="container" style="display: flex; overflow-x: scroll; scroll-snap-type: x mandatory; scroll-behavior: smooth; -webkit-overflow-scrolling: touch;">
<div class="slide" id="slide-1" style="scroll-snap-align: start; flex: 1 0 100%; width: 25vw; height: 25vw; margin: 0 1.5em 0 1.5em; background: #fdfef8; border-radius: 0.5em; display: flex; flex-direction: column; justify-content: space-around; align-items: center; overflow: auto;">
<img title="Coat of Arms of the Duchess" src="https://upload.wikimedia.org/wikipedia/commons/2/26/Coat_of_Arms_of_the_Duke_of_Norfolk%2C_the_Earl_Marshal.svg" alt="Coat of Arms of the Duke of Norfolk, the Earl Marshal.svg" style="object-fit: contain; max-width: 90%; max-height: 90%; border-radius: 0.5em;">
<div style="width: 100%;">
<details style="width: 90%; height: auto; margin: auto; padding: 0.4em; background: #FFF; border: 2px solid #f6e078; border-radius: 0.5em;">
<summary>Image Copyright Information</summary>
<div>
By <a href="//commons.wikimedia.org/wiki/User:Sodacan" title="User:Sodacan">Sodacan</a> - This W3C-unspecified <a href="https://en.wikipedia.org/wiki/Vector_images" class="extiw" title="w:Vector images">vector image</a> was created with <a href="https://en.wikipedia.org/wiki/Inkscape" class="extiw" title="w:Inkscape">Inkscape</a>. - <span class="int-own-work" lang="en">Own work</span>, <a href="https://creativecommons.org/licenses/by-sa/3.0" title="Creative Commons Attribution-Share Alike 3.0">CC BY-SA 3.0</a>, <a href="https://commons.wikimedia.org/w/index.php?curid=14690578">Link</a>
</div>
</details>
</div>
</div>
<div class="slide" id="slide-2" style="scroll-snap-align: start; flex: 1 0 100%; width: 25vw; height: 25vw; margin: 0 1.5em 0 1.5em; background: #fdfef8; border-radius: 0.5em; display: flex; flex-direction: column; justify-content: space-around; align-items: center; overflow: auto;">
<img src="https://upload.wikimedia.org/wikipedia/commons/0/0a/Lipizzaner_Brdo_20080610_2.jpg" style="object-fit: contain; max-width: 90%; max-height: 90%; border-radius: 0.5em;">
<div style="width: 90%;">
<hr>
<h4>Riders of the Royal Riding School present their horses in an event for the Royal Family.</h4>
<hr>
</div>
<div style="width: 100%;">
<details style="width: 90%; height: auto; margin: auto; direction: ltr; line-height: 1.375em; font-size: 16px; padding: 2px 4px 2px 6px; background: #FFF; border: 2px solid #f6e078; border-radius: 0.5em; position: relative;">
<summary>Image Copyright Information</summary>
<div>
By White House photo by Eric Draper - <a rel="nofollow" class="external free" href="https://www.whitehouse.gov/news/releases/2008/06/images/20080610-8_d-0661-1-515h.html">WH Press Release</a>, Public Domain, <a href="https://commons.wikimedia.org/w/index.php?curid=4399025">Link</a>
</div>
</details>
</div>
</div>
<div class="slide" id="slide-3" style="scroll-snap-align: start; flex: 1 0 100%; width: 25vw; height: 25vw; margin: 0 1.5em 0 1.5em; background: #fdfef8; border-radius: 0.5em; display: flex; flex-direction: column; justify-content: space-around; align-items: center; overflow: auto;">
<img src="https://upload.wikimedia.org/wikipedia/commons/2/2c/Lipicanec_PRMO.jpg" style="object-fit: contain; max-width: 90%; max-height: 90%; border-radius: 0.5em;">
<div style="width: 90%;">
<hr>
<h4>RSA Theresa, a mare of the Royal Lipizzan stud at Blumenfeld, enjoys her time in a field.</h4>
<hr>
</div>
<div style="width: 100%;">
<details style="width: 90%; height: auto; margin: auto; direction: ltr; line-height: 1.375em; font-size: 16px; padding: 2px 4px 2px 6px; background: #FFF; border: 2px solid #f6e078; border-radius: 0.5em; position: relative;">
<summary>Image Copyright Information</summary>
<div>
By Srdjan Živulovič - This picture was previously uploaded at the Slovene wiki as <a href="https://en.wikipedia.org/wiki/sl:Slika:Lipicanec_PRMO.jpg" class="extiw" title="w:sl:Slika:Lipicanec PRMO.jpg">w:sl:Slika:Lipicanec PRMO.jpg</a> and was originally published here: <a rel="nofollow" class="external free" href="http://www.uvi.si/eng/slovenia/photos/heritage/034/index.html">http://www.uvi.si/eng/slovenia/photos/heritage/034/index.html</a>, Attribution, <a href="https://commons.wikimedia.org/w/index.php?curid=18473075">Link</a>
</div>
</details>
</div>
</div>
<div class="slide" id="slide-4" style="scroll-snap-align: start; flex: 1 0 100%; width: 25vw; height: 25vw; margin: 0 1.5em 0 1.5em; background: #fdfef8; border-radius: 0.5em; display: flex; flex-direction: column; justify-content: space-around; align-items: center; overflow: auto;">
<img src="https://upload.wikimedia.org/wikipedia/commons/0/02/Ludwig_Koch_Lipizzaner.jpg" style="object-fit: contain; max-width: 90%; max-height: 90%; border-radius: 0.5em;">
<div style="width: 90%;">
<hr>
<h4>The late rider Andrew Schleppenfeld and RSA Peter.</h4>
<hr>
</div>
<div style="width: 100%;">
<details style="width: 90%; height: auto; margin: auto; direction: ltr; line-height: 1.375em; font-size: 16px; padding: 2px 4px 2px 6px; background: #FFF; border: 2px solid #f6e078; border-radius: 0.5em; position: relative;">
<summary>Image Copyright Information</summary>
<div>
By <a href="https://en.wikipedia.org/wiki/en:Ludwig_Koch_(painter)" class="extiw" title="w:en:Ludwig Koch (painter)"><span title="Austrian artist (1866-1934)">Ludwig Koch</span></a> - <a rel="nofollow" class="external free" href="http://www.dorotheum.com/">http://www.dorotheum.com/</a>, Public Domain, <a href="https://commons.wikimedia.org/w/index.php?curid=68527330">Link</a>
</div>
</details>
</div>
</div>
<div class="slide" id="slide-5" style="scroll-snap-align: start; flex: 1 0 100%; width: 25vw; height: 25vw; margin: 0 1.5em 0 1.5em; background: #fdfef8; border-radius: 0.5em; display: flex; flex-direction: column; justify-content: space-around; align-items: center; overflow: auto;">
<img src="https://upload.wikimedia.org/wikipedia/commons/9/94/Lipiza%2C_Slovenia_2015._Lipizzan_Horses_%2822865009162%29.jpg" style="object-fit: contain; max-width: 90%; max-height: 90%; border-radius: 0.5em;">
<div style="width: 90%;">
<hr>
<h4>RSA Frederick, RSA Theresa, and RSA Edward during their time at the Royal Stud Blumenfeld.</h4>
<hr>
</div>
<div style="width: 100%;">
<details style="width: 90%; height: auto; margin: auto; direction: ltr; line-height: 1.375em; font-size: 16px; padding: 2px 4px 2px 6px; background: #FFF; border: 2px solid #f6e078; border-radius: 0.5em; position: relative;">
<summary>Image Copyright Information</summary>
<div>
By <a rel="nofollow" class="external text" href="https://www.flickr.com/people/11417420@N07">Maurizio Costanzo</a> from Trieste, Italia <a rel="nofollow" class="external text" href="https://www.flickr.com/photos/maurizio_costanzo/22865009162/">Lipiza, Slovenia 2015. Lipizzan Horses</a>, <a href="https://creativecommons.org/licenses/by/2.0" title="Creative Commons Attribution 2.0">CC BY 2.0</a>, <a href="https://commons.wikimedia.org/w/index.php?curid=44913264">Link</a>
</div>
</details>
</div>
</div>
<div class="slide" id="slide-6" style="scroll-snap-align: start; flex: 1 0 100%; width: 25vw; height: 25vw; margin: 0 1.5em 0 1.5em; background: #fdfef8; border-radius: 0.5em; display: flex; flex-direction: column; justify-content: space-around; align-items: center; overflow: auto;">
<img src="https://upload.wikimedia.org/wikipedia/commons/1/12/Lipizzaner_2013.jpg" style="object-fit: contain; max-width: 90%; max-height: 90%; border-radius: 0.5em;">
<div style="width: 90%;">
<hr>
<h4>At the Royal Stud, young foals wait for their first moult, which will eventually give way to their true beautiful white color around age 7-10.</h4>
<hr>
</div>
<div style="width: 100%;">
<details style="width: 90%; height: auto; margin: auto; direction: ltr; line-height: 1.375em; font-size: 16px; padding: 2px 4px 2px 6px; background: #FFF; border: 2px solid #f6e078; border-radius: 0.5em; position: relative;">
<summary>Image Copyright Information</summary>
<div>
By <a rel="nofollow" class="external text" href="http://pixabay.com/en/users/MemoryCatcher-168384/">MemoryCatcher</a><a rel="nofollow" class="external free" href="http://pixabay.com/en/foal-horses-isolate-colt-equine-649699/">http://pixabay.com/en/foal-horses-isolate-colt-equine-649699/</a>,<a href="http://creativecommons.org/publicdomain/zero/1.0/deed.en" title="Creative Commons Zero, Public Domain Dedication">CC0</a>, <a href="https://commons.wikimedia.org/w/index.php?curid=39297218">Link</a>
</div>
</details>
</div>
</div>
<div class="slide" id="slide-7" style="scroll-snap-align: start; flex: 1 0 100%; width: 25vw; height: 25vw; margin: 0 1.5em 0 1.5em; background: #fdfef8; border-radius: 0.5em; display: flex; flex-direction: column; justify-content: space-around; align-items: center; overflow: auto;">
<img src="https://upload.wikimedia.org/wikipedia/commons/8/8a/Lipizzaner_Conversano_Traviata.jpg" style="object-fit: contain; max-width: 90%; max-height: 90%; border-radius: 0.5em;">
<div style="width: 90%;">
<hr>
<h4>RSA Theresa</h4>
<hr>
</div>
<div style="width: 100%;">
<details style="width: 90%; height: auto; margin: auto; direction: ltr; line-height: 1.375em; font-size: 16px; padding: 2px 4px 2px 6px; background: #FFF; border: 2px solid #f6e078; border-radius: 0.5em; position: relative;">
<summary>Image Copyright Information</summary>
<div>
By <a href="//commons.wikimedia.org/w/index.php?title=User:AtjanHop&amp;action=edit&amp;redlink=1" class="new" title="User:AtjanHop (page does not exist)">AtjanHop</a> - <span class="int-own-work" lang="en">Own work</span>, <a href="http://creativecommons.org/publicdomain/zero/1.0/deed.en" title="Creative Commons Zero, Public Domain Dedication">CC0</a>, <a href="https://commons.wikimedia.org/w/index.php?curid=22158358">Link</a>
</div>
</details>
</div>
</div>
<div class="slide" id="slide-8" style="scroll-snap-align: start; flex: 1 0 100%; width: 25vw; height: 25vw; margin: 0 1.5em 0 1.5em; background: #fdfef8; border-radius: 0.5em; display: flex; flex-direction: column; justify-content: space-around; align-items: center; overflow: auto;">
<img src="https://upload.wikimedia.org/wikipedia/commons/1/13/Lipizzaner_%284385422717%29.jpg" style="object-fit: contain; max-width: 90%; max-height: 90%; border-radius: 0.5em;">
<div style="width: 90%;">
<hr>
<h4>RSA Frederick, RSA Theresa, and RSA Edward show off thier <i>haute école</i> at a public presentation.</h4>
<hr>
</div>
<div style="width: 100%;">
<details style="width: 90%; height: auto; margin: auto; direction: ltr; line-height: 1.375em; font-size: 16px; padding: 2px 4px 2px 6px; background: #FFF; border: 2px solid #f6e078; border-radius: 0.5em; position: relative;">
<summary>Image Copyright Information</summary>
<div>
By <a rel="nofollow" class="external text" href="https://www.flickr.com/people/46824267@N04">kjulym7w28</a> - <a rel="nofollow" class="external text" href="https://www.flickr.com/photos/46824267@N04/4385422717/">P1020066</a> Uploaded by <a href="//commons.wikimedia.org/wiki/User:Sporti" title="User:Sporti">sporti</a>, <a href="https://creativecommons.org/licenses/by/2.0" title="Creative Commons Attribution 2.0">CC BY 2.0</a>, <a href="https://commons.wikimedia.org/w/index.php?curid=27193496">Link</a>
</div>
</details>
</div>
</div>
<div class="slide" id="slide-9" style="scroll-snap-align: start; flex: 1 0 100%; width: 25vw; height: 25vw; margin: 0 1.5em 0 1.5em; background: #fdfef8; border-radius: 0.5em; display: flex; flex-direction: column; justify-content: space-around; align-items: center; overflow: auto;">
<img src="https://upload.wikimedia.org/wikipedia/commons/9/9c/Lipizzaner_DSC02439.jpg" style="object-fit: contain; max-width: 90%; max-height: 90%; border-radius: 0.5em;">
<div style="width: 90%;">
<hr>
<h4>RSA Henry being led by stablehand Mattias Schönburn.</h4>
<hr>
</div>
<div style="width: 100%;">
<details style="width: 90%; height: auto; margin: auto; direction: ltr; line-height: 1.375em; font-size: 16px; padding: 2px 4px 2px 6px; background: #FFF; border: 2px solid #f6e078; border-radius: 0.5em; position: relative;">
<summary>Image Copyright Information</summary>
<div>
By <a title="User:David.Monniaux" href="https://commons.wikimedia.org/wiki/User:David.Monniaux">David.Monniaux</a>, <a href="https://creativecommons.org/licenses/by/2.0" title="Creative Commons Attribution 2.0">CC BY 2.0</a>, <a href="https://commons.wikimedia.org/w/index.php?curid=127656">Link</a>
</div>
</details>
</div>
</div>
<div class="slide" id="slide-10" style="scroll-snap-align: start; flex: 1 0 100%; width: 25vw; height: 25vw; margin: 0 1.5em 0 1.5em; background: #fdfef8; border-radius: 0.5em; display: flex; flex-direction: column; justify-content: space-around; align-items: center; overflow: auto;">
<img src="https://upload.wikimedia.org/wikipedia/commons/2/21/Alter_Lipizzaner_in_Rente.JPG" style="object-fit: contain; max-width: 90%; max-height: 90%; border-radius: 0.5em;">
<div style="width: 90%;">
<hr>
<h4>RSA Theresa waits paitently for a treat.</h4>
<hr>
</div>
<div style="width: 100%;">
<details style="width: 90%; height: auto; margin: auto; direction: ltr; line-height: 1.375em; font-size: 16px; padding: 2px 4px 2px 6px; background: #FFF; border: 2px solid #f6e078; border-radius: 0.5em; position: relative;">
<summary>Image Copyright Information</summary>
<div>
By <a href="https://en.wikipedia.org/wiki/de:User:Sarras" class="extiw" title="w:de:User:Sarras">Sarras</a> at <a href="https://en.wikipedia.org/wiki/de:" class="extiw" title="w:de:">German Wikipedia</a>, <a href="https://creativecommons.org/licenses/by-sa/3.0" title="Creative Commons Attribution-Share Alike 3.0">CC BY-SA 3.0</a>, <a href="https://commons.wikimedia.org/w/index.php?curid=19985403">Link</a>
</div>
</details>
</div>
</div>
<div class="slide" id="slide-11" style="scroll-snap-align: start; flex: 1 0 100%; width: 25vw; height: 25vw; margin: 0 1.5em 0 1.5em; background: #fdfef8; border-radius: 0.5em; display: flex; flex-direction: column; justify-content: space-around; align-items: center; overflow: auto;">
<img src="https://upload.wikimedia.org/wikipedia/commons/c/cb/Favory_Pallavicina.jpg" style="object-fit: contain; max-width: 90%; max-height: 90%; border-radius: 0.5em;">
<div style="width: 90%;">
<hr>
<h4>RSA Frederick</h4>
<hr>
</div>
<div style="width: 100%;">
<details style="width: 90%; height: auto; margin: auto; direction: ltr; line-height: 1.375em; font-size: 16px; padding: 2px 4px 2px 6px; background: #FFF; border: 2px solid #f6e078; border-radius: 0.5em; position: relative;">
<summary>Image Copyright Information</summary>
<div>
By <a href="//commons.wikimedia.org/wiki/User:Conversano_Isabella" title="User:Conversano Isabella">Conversano Isabella</a> - <span class="int-own-work" lang="en">Own work</span>, <a href="https://creativecommons.org/licenses/by-sa/3.0" title="Creative Commons Attribution-Share Alike 3.0">CC BY-SA 3.0</a>, <a href="https://commons.wikimedia.org/w/index.php?curid=18175628">Link</a>
</div>
</details>
</div>
</div>
<div class="slide" id="slide-12" style="scroll-snap-align: start; flex: 1 0 100%; width: 25vw; height: 25vw; margin: 0 1.5em 0 1.5em; background: #fdfef8; border-radius: 0.5em; display: flex; flex-direction: column; justify-content: space-around; align-items: center; overflow: auto;">
<img src="https://upload.wikimedia.org/wikipedia/commons/2/29/Lipizzaner_Stallion.jpg" style="object-fit: contain; max-width: 90%; max-height: 90%; border-radius: 0.5em;">
<div style="width: 90%;">
<hr>
<h4>RSA Frederick performs a courbette, a type of air above ground, during his training period at the Royal Amicran Riding School.</h4>
<hr>
</div>
<div style="width: 100%;">
<details style="width: 90%; height: auto; margin: auto; direction: ltr; line-height: 1.375em; font-size: 16px; padding: 2px 4px 2px 6px; background: #FFF; border: 2px solid #f6e078; border-radius: 0.5em; position: relative;">
<summary>Image Copyright Information</summary>
<div>
By <a rel="nofollow" class="external text" href="https://www.flickr.com/photos/85123978@N00">Tom Hammer</a> - originally posted to <a href="//commons.wikimedia.org/wiki/Flickr" class="mw-redirect" title="Flickr">Flickr</a> as <a rel="nofollow" class="external text" href="https://www.flickr.com/photos/85123978@N00/2614599559">Lippizaner Stallion</a>, <a href="https://creativecommons.org/licenses/by/2.0" title="Creative Commons Attribution 2.0">CC BY 2.0</a>, <a href="https://commons.wikimedia.org/w/index.php?curid=6373842">Link</a>
</div>
</details>
</div>
</div>
<div class="slide" id="slide-13" style="scroll-snap-align: start; flex: 1 0 100%; width: 25vw; height: 25vw; margin: 0 1.5em 0 1.5em; background: #fdfef8; border-radius: 0.5em; display: flex; flex-direction: column; justify-content: space-around; align-items: center; overflow: auto;">
<img src="https://upload.wikimedia.org/wikipedia/commons/4/4c/Lipizz23.jpg" style="object-fit: contain; max-width: 90%; max-height: 90%; border-radius: 0.5em;">
<div style="width: 90%;">
<hr>
<h4>RSA Augustus participates in an exercise at the Royal Carriage Driving School.</h4>
<hr>
</div>
<div style="width: 100%;">
<details style="width: 90%; height: auto; margin: auto; direction: ltr; line-height: 1.375em; font-size: 16px; padding: 2px 4px 2px 6px; background: #FFF; border: 2px solid #f6e078; border-radius: 0.5em; position: relative;">
<summary>Image Copyright Information</summary>
<div>
By <a href="//commons.wikimedia.org/w/index.php?title=User:Bingar1234&amp;action=edit&amp;redlink=1" class="new" title="User:Bingar1234 (page does not exist)">Bingar1234</a> - <span class="int-own-work" lang="en">Own work</span>, <a href="https://creativecommons.org/licenses/by-sa/4.0" title="Creative Commons Attribution-Share Alike 4.0">CC BY-SA 4.0</a>, <a href="https://commons.wikimedia.org/w/index.php?curid=94429014">Link</a>
</div>
</details>
</div>
</div>
</div>
</div>
</body>
<script>
</script>
</html>