Ejercicio práctico HTML 12
Objetivo
Video Integrado
Actividad
Inserta un video de YouTube usando la etiqueta <iframe>
.
Solución
HTML
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8" />
<title>Video Integrado</title>
</head>
<body>
<h1>Video de YouTube</h1>
<iframe
width="560"
height="315"
src="https://www.youtube.com/embed/dQw4w9WgXcQ"
frameborder="0"
allowfullscreen
></iframe>
</body>
</html>