1 | <!DOCTYPE html> |
2 | <html lang="es"> |
3 | |
4 | <head> |
5 | |
6 | <meta charset="UTF-8"> |
7 | <title>Grid 2</title> |
8 | <meta name="viewport" |
9 | content="width=device-width"> |
10 | |
11 | <style> |
12 | body { |
13 | font-family: sans-serif; |
14 | } |
15 | |
16 | ol { |
17 | list-style-type: none; |
18 | margin: 0; |
19 | padding: 0.5rem; |
20 | display: grid; |
21 | gap: 0.5rem; |
22 | grid-template-columns: repeat(auto-fill, minmax(15rem, 1fr)); |
23 | } |
24 | |
25 | img { |
26 | max-width: 100%; |
27 | } |
28 | </style> |
29 | |
30 | </head> |
31 | |
32 | <body> |
33 | |
34 | <h1>Grid 2</h1> |
35 | |
36 | <nav> |
37 | <ol> |
38 | |
39 | <li> |
40 | <figure> |
41 | <img alt="Lobo" |
42 | src="https://images.pexels.com/photos/397857/pexels-photo-397857.jpeg"> |
43 | <figcaption>Lobo</figcaption> |
44 | </figure> |
45 | <p> |
46 | <a target="_blank" rel=”noreferrer” |
47 | href="https://www.pexels.com/es-es/foto/lobo-blanco-y-negro-397857/"> |
48 | Foto de Steve en Pexels.</a> |
49 | </p> |
50 | </li> |
51 | |
52 | <li> |
53 | <figure> |
54 | <img alt="Buho" |
55 | src="https://images.pexels.com/photos/3732453/pexels-photo-3732453.jpeg"> |
56 | <figcaption>Buho</figcaption> |
57 | </figure> |
58 | <p> |
59 | <a target="_blank" rel=”noreferrer” |
60 | href="https://www.pexels.com/es-es/foto/foto-de-buho-ural-3732453/"> |
61 | Foto de Erik Karits en Pexels.</a> |
62 | </p> |
63 | </li> |
64 | |
65 | <li> |
66 | <figure> |
67 | <img alt="Perro" |
68 | src="https://images.pexels.com/photos/3978352/pexels-photo-3978352.jpeg"> |
69 | <figcaption>Perro </figcaption> |
70 | </figure> |
71 | <p> |
72 | <a target="_blank" rel=”noreferrer” |
73 | href="https://www.pexels.com/es-es/foto/perro-de-pelo-corto-marron-y-blanco-acostado-3978352/"> |
74 | Foto de Creative Workshop en Pexels.</a> |
75 | </p> |
76 | </li> |
77 | |
78 | <li> |
79 | <figure> |
80 | <img alt="Gato" |
81 | src="https://images.pexels.com/photos/141496/pexels-photo-141496.jpeg"> |
82 | <figcaption>Gato</figcaption> |
83 | </figure> |
84 | <p> |
85 | <a target="_blank" rel=”noreferrer” |
86 | href="https://www.pexels.com/es-es/foto/gatito-gris-en-bolsa-de-papel-plateada-141496/"> |
87 | Foto de Vadim B en Pexels.</a> |
88 | </p> |
89 | </li> |
90 | |
91 | <li> |
92 | <figure> |
93 | <img alt="León" |
94 | src="https://images.pexels.com/photos/2270848/pexels-photo-2270848.jpeg"> |
95 | <figcaption>León</figcaption> |
96 | </figure> |
97 | <p> |
98 | <a target="_blank" rel=”noreferrer” |
99 | href="https://www.pexels.com/es-es/foto/leon-marron-2270848/"> |
100 | Foto de Ralph en Pexels.</a> |
101 | </p> |
102 | </li> |
103 | |
104 | <li> |
105 | <figure> |
106 | <img alt="Oso" |
107 | src="https://images.pexels.com/photos/35435/pexels-photo.jpg"> |
108 | <figcaption>Oso</figcaption> |
109 | </figure> |
110 | <p> |
111 | <a target="_blank" rel=”noreferrer” |
112 | href="https://www.pexels.com/es-es/foto/oso-cafe-35435/"> |
113 | Foto de Rasmus Svinding en Pexels.</a> |
114 | </p> |
115 | </li> |
116 | |
117 | <li> |
118 | <figure> |
119 | <img alt="Coyote" |
120 | src="https://images.pexels.com/photos/10226903/pexels-photo-10226903.jpeg"> |
121 | <figcaption>Coyote</figcaption> |
122 | </figure> |
123 | <p> |
124 | <a target="_blank" rel=”noreferrer” |
125 | href="https://www.pexels.com/es-es/foto/animal-perro-mono-hierba-10226903/"> |
126 | Foto de Esteban Arango en Pexels.</a> |
127 | </p> |
128 | </li> |
129 | |
130 | </ol> |
131 | </nav> |
132 | |
133 | </body> |
134 | |
135 | </html> |