-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
85 lines (79 loc) · 2.59 KB
/
index.html
File metadata and controls
85 lines (79 loc) · 2.59 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Video Gallery with Titles</title>
<style>
body {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
display: flex;
flex-direction: column;
align-items: center;
background-color: #f9f9f9;
margin: 0;
padding: 20px;
}
.video-grid {
display: grid;
grid-template-columns: repeat(2, 1fr); /* 2x2 Layout */
gap: 30px;
max-width: 1100px;
width: 100%;
}
.video-item {
display: flex;
flex-direction: column;
align-items: center;
background: #fff;
padding: 10px;
border-radius: 10px;
box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}
video {
width: 100%;
border-radius: 5px;
background-color: #000;
}
.video-name {
margin-top: 12px;
font-weight: bold;
color: #444;
font-size: 1.1rem;
}
/* Mobile friendly: stacks videos on small screens */
@media (max-width: 600px) {
.video-grid { grid-template-columns: 1fr; }
}
</style>
</head>
<body>
<h1>Adolescence</h1>
<div class="video-grid">
<div class="video-item">
<video controls>
<source src="https://pub-fa05911f55ab4546b822ec40d68ccf99.r2.dev/1fcb1cbd38e0bcfe21c8987863198a68?token=1772559265" type="video/mp4">
</video>
<div class="video-name">Episode 1</div>
</div>
<div class="video-item">
<video controls>
<source src="https://pub-fa05911f55ab4546b822ec40d68ccf99.r2.dev/a4c237015e8a947b1bbf9adfc9d65d1d?token=1772563111" type="video/mp4">
</video>
<div class="video-name">Episode 2</div>
</div>
<div class="video-item">
<video controls>
<source src="https://hub.oreao-cdn.buzz/cf7a9cee9019269cf899ad35fa61931b?token=1772563720" type="video/mp4">
</video>
<div class="video-name">Episode 3</div>
</div>
<div class="video-item">
<video controls>
<source src="https://hub.oreao-cdn.buzz/3d860cc4cd4d4a6075a1a2e88ea209dd?token=1772563725" type="video/mp4">
</video>
<div class="video-name">Episode 4</div>
</div>
</div>
</body>
</html>