HTML/CSS :: Aufgabe #6
3 Lösungen
HTML Grundlagen: Ein Video von Youtube in eine Website einbinden
Anfänger - HTML/CSS
von Gelöschte Person
- 01.04.2019 um 19:25 Uhr
Schreibe einen Code der ein Video von Youtube in die Website einbindet.
Lösungen:
<!DOCTYPE html>
<html>
<head>
<title>HTML/CSS #6</title>
<meta charset="UTF-8" />
</head>
<body>
<h1>HTML/CSS #6</h1>
<iframe width="560" height="315" src="https://www.youtube.com/embed/f0mIJ5Y86bc" frameborder="0" allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
</body>
</html>
<!DOCTYPE html>
<html>
<head><meta charset="UTF-8">
</head>
<body>
<iframe src="https://www.youtube.com/embed/jdjfRh6O5xE"
allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture"
allowfullscreen></iframe>
</body>
</html><!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<title>HTML Grundlagen: Ein Video von Youtube in eine Website einbinden</title>
</head>
<body>
<iframe width="560" height="315" src="https://www.youtube.com/embed/pM-G2sIFPkA" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
</body>
</html>
