-
Notifications
You must be signed in to change notification settings - Fork 0
/
gato.html
36 lines (35 loc) · 1.14 KB
/
gato.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Ayuda a un peludo</title>
<link rel="stylesheet" href="/assets/css/style.css">
</head>
<body>
<header>
<h1 class="center">Gatos en adopcion</h1>
<a href="index.html">Volver a la pagina principal.</a>
<p>Los siguientes gatos se esncuentran disponibles para dar en adopcion.</p>
</header>
<section>
<ul>
<h2>Nuestros gatos que buscan familia:</h2>
<li>
<img src="/assets/img/gato1.jpeg" alt="Gato nico" width="400px">
<a href="/ficha_gatos/gato1.html">Nico</a>
</li>
<br>
<li>
<img src="/assets/img/gato2.png" alt="Gato juan" width="400px">
<a href="ficha_gatos/gato2.html">Juan</a>
</li>
<br>
<li>
<img src="/assets/img/gato3.jpg" alt="Gata princesa" width="400px">
<a href="ficha_gatos/gato3.html">Princesa</a>
</li>
</ul>
</section>
</body>
</html>