-
Notifications
You must be signed in to change notification settings - Fork 0
/
CULT_MUSIC.html
43 lines (43 loc) · 1.51 KB
/
CULT_MUSIC.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Ska Cult Music Videos</title>
<link rel="stylesheet" href="style.css">
<style>
.video-container {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
gap: 20px; /* Adjust the space between videos */
margin: 20px;
}
.video-wrapper {
width: 100%;
max-width: 560px; /* Adjust based on your preferred maximum size */
margin: 10px 0;
}
.video-wrapper iframe {
width: 100%;
height: 315px; /* Adjust height based on aspect ratio */
}
.video-title {
text-align: center;
margin-bottom: 10px;
}
</style>
</head>
<body>
<div class="content-container">
<div class="video-container">
<div class="video-wrapper">
<h2 class="video-title">The Specials - You're Wondering Now</h2>
<iframe src="https://www.youtube.com/embed/bBWrbEUu3nk?si=dly_G9D3UgymdgNW" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe>
</div>
<!-- Repeat for each video -->
</div>
</div>
</body>
</html>