-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathelenco.html
74 lines (65 loc) · 2.36 KB
/
elenco.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
71
72
73
74
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="utf-8"/>
<title>Elenco</title>
<link rel="stylesheet" href="pecstyle.css" />
<script type="module" src="pecjava.js"></script>
<script src="https://unpkg.com/details-element-polyfill"></script>
<link rel="icon" href="img/logotp.ico" type="image/x-icon">
</head>
<body>
<header>
<h1>
<a href="index.html" target="_blank" class="sin-subrayado">
<img class="logo" src="img/logotp.png" alt="Logo" loading="lazy"> Twin Peaks
</a>
</h1>
</header>
<section class="intro">
<h1>Elenco de Twin Peaks</h1>
</section>
<section class="escenariomagico">
<h2>Principales</h2>
<ul>
<li><strong>Kyle MacLachlan</strong> como Dale Cooper</li>
<li>
<picture>
<source srcset="img/Kyle.webp" type="image/webp">
<img src="img/Kyle.jpg" alt="Una fotografía de Kyle MacLachlan" loading="lazy">
</picture>
</li>
<li><strong>Sheryl Lee</strong> como Laura Palmer</li>
<li>
<picture>
<source srcset="img/Sheryl.webp" type="image/webp">
<img src="img/Sheryl.jpg" alt="Una fotografía de Sheryl Lee" loading="lazy">
</picture>
</li>
<li><strong>Michael Ontkean</strong> como Sheriff Harry S. Truman</li>
<li>
<picture>
<source srcset="img/Michael.webp" type="image/webp">
<img src="img/Michael.jpg" alt="Una fotografía de Michael Ontkean" loading="lazy">
</picture>
</li>
<li><strong>Ray Wise</strong> como Leland Palmer</li>
<li>
<picture>
<source srcset="./img/Ray.webp" type="image/webp">
<img src="img/Ray.jpg" alt="Una fotografía de Ray Wise" loading="lazy">
</picture>
</li>
</ul>
</section>
<section class="escenariomagico">
<h2>Secundarios</h2>
<ul>
<li><strong>Richard Beymer</strong> como Benjamin Horne</li>
<li><strong>Madchen Amick</strong> como Shelly Johnson</li>
<li><strong>Dana Ashbrook</strong> como Bobby Briggs</li>
<li><strong>Peggy Lipton</strong> como Norma Jennings</li>
</ul>
</section>
</body>
</html>