-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
91 lines (91 loc) · 2.85 KB
/
Copy pathindex.html
File metadata and controls
91 lines (91 loc) · 2.85 KB
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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport"
content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Jazz</title>
</head>
<body>
<header>
<h1>Discos Jazz</h1>
<form>
<p>
<label>
Buscar
<input type="search" name="buscar">
</label>
<input type="submit" value="🔍">
</p>
</form>
<nav>
<ul>
<li>
<a href="index.html">Inicio</a>
</li>
<li>
<a href="disco-1.html">Novedades</a>
</li>
</ul>
</nav>
</header>
<main>
<!-- Migas de pan nav>ol>li*3>a[href="#"]lorem1-->
<nav>
<ol>
<li><a href="#">Inicio</a></li>
</ol>
</nav>
<!-- Listado de discos -->
<section>
<h2>Discos</h2>
<!-- Disco 1 -->
<article>
<header>
<h3>Frank Zappa</h3>
<p><time datetime="1969">1969</time></p>
</header>
<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit.</p>
<p>
<img src="img/frank-zappa-hots-rats-1969.webp" alt="Frank Zappa">
</p>
<p>
<a href="disco-1.html">Ver ficha</a>
</p>
</article>
<!-- Disco 2 -->
<article>
<header>
<h3>John Coltrane</h3>
<p><time datetime="1964">1964</time></p>
</header>
<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit.</p>
<p>
<img src="img/jhon-coltrane-9-1964.webp" alt="John Coltrane">
</p>
<p>
<a href="disco-2.html">Ver ficha</a>
</p>
</article>
<!-- Disco 3 -->
<article>
<header>
<h3>Miles Davis</h3>
<p><time datetime="1956">1956</time></p>
</header>
<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit.</p>
<p>
<img src="img/miles-davis-2-22-1956.webp" alt="Miles Davis">
</p>
<p>
<a href="disco-3.html">Ver ficha</a>
</p>
</article>
</section>
</main>
<footer>
<p>2022 ○ Mi nombre</p>
</footer>
</body>
</html>