html
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Embeded Youtube Videos</title>
</head>
<body>
<div>
<div class="iframediv">
<iframe src="https://www.youtube.com/embed/yWO-cvGETRQ" frameborder="0" allow="autoplay; encrypted-media" allowfullscreen></iframe>
<figcaption>Black Holes & The Universe - Kurzgesagt</figcaption>
<br>
</div>
<div class="iframediv">
<iframe src="https://www.youtube.com/embed/jAhjPd4uNFY" frameborder="0" allow="autoplay; encrypted-media" allowfullscreen></iframe>
<figcaption>Genetic Enginnering & CRISPR - Kurzgesagt</figcaption>
<br>
</div>
<div class="iframediv">
<iframe src="https://www.youtube.com/embed/mZsaaturR6E" frameborder="0" allow="autoplay; encrypted-media" allowfullscreen></iframe>
<figcaption class="end">Fusion Power - Kurzgesagt</figcaption>
</div>
</div>
</body>
</html>
Enter to Rename, Shift+Enter to Preview
css
css
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
* {
margin: 0;
padding: 0;
}
body {
color: white;
background-color: #992222;
}
br {
color: #992222;
}
div div iframe {
border-style: solid;
border-radius: 10px;
margin-top: 4vh;
width: 560px;
height: 315px;
/* border-width: 2px; */
border-color: transparent;
}
@media screen and (max-width: 660px) {
div div iframe {
width: 280px;
height: 157.5px;
Enter to Rename, Shift+Enter to Preview
js
js
1
Enter to Rename, Shift+Enter to Preview
BROWSER
Console
Run