-
Notifications
You must be signed in to change notification settings - Fork 0
/
Video Youtube.html
70 lines (58 loc) · 2.63 KB
/
Video Youtube.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
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
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="author" content="Eduardo Parra">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="./style.css">
<title>Video Page</title>
</head>
<body>
<header>
<h1>PAGINA DE PRUEBA TIPO YouTube</h1>
</header>
<nav>
<a href="#">HOME</a>
<a href="#">VIDEOS</a>
</nav>
<main>
<section>
<iframe width="560" height="315" src="https://www.youtube.com/embed/kN1XP-Bef7w" title="YouTube video player" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen name="marco"></iframe>
<h1>Curso de HTML5 desde CERO (Completo)</h1>
<p>2,091,998 views Dec 15, 2019</p>
<div class="flex">
<div>
<span>Soy Dalto</span>
<span>380K subscribers</span>
</div>
<button>SUSCRIBITE</button>
</div>
<p>¿Queres hacer una página web con HTML, CSS y JavaScript? Este es el curso de HTML desde cero que vas a terminar, te prometo que no te vas a aburrir durante el aprendizaje de este gran tutorial de HTML5 Actualizado 2021.</p>
</section>
<aside>
<a href="https://www.youtube.com/embed/urtrRYC3vI4" target="marco">
<div>
<img src="https://i.ytimg.com/vi/AKFkTiNnqVo/hqdefault.jpg?sqp=-oaymwEbCKgBEF5IVfKriqkDDggBFQAAiEIYAXABwAEG&rs=AOn4CLBQ35jqZbo6_kJy3zhDtl0WnAdNaQ" alt="EL VERDADERO MOTIVO PARA APRENDER A PROGRAMAR">
</div>
<div class="contenedor">
<h2>EL VERDADERO MOTIVO PARA APRENDER A PROGRAMAR</h2>
<span>Soy Dalto</span>
<span>101K views - 7 months ago</span>
</div>
</a>
<a href="https://www.youtube.com/embed/mNbnV3aN3KA" target="marco">
<div>
<img src="https://i.ytimg.com/vi/mNbnV3aN3KA/hqdefault.jpg?sqp=-oaymwEbCKgBEF5IVfKriqkDDggBFQAAiEIYAXABwAEG&rs=AOn4CLBCeRLEBH66Ldt6FBcz1VS9lZyqSQ" alt="Aprende HTML en 15 Minutos">
</div>
<div class="contenedor">
<h2>Aprende HTML en 15 Minutos 📙</h2>
<span>Victor Robles WEB</span>
<span>304K views - 2 years ago</span>
</div>
</a>
</aside>
</main>
<footer>Todos los derechos reservados ® 2022</footer>
</body>
</html>