-
Notifications
You must be signed in to change notification settings - Fork 0
/
perro.html
36 lines (35 loc) · 1.16 KB
/
perro.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">Perros en adopcion</h1>
<a href="index.html">Volver a la pagina principal.</a>
<p>Los siguientes perros se encuentran disponibles para dar en adopcion.</p>
</header>
<section>
<ul>
<h2>Nuestros perros que buscan familia:</h2>
<li>
<img src="/assets/img/perro1.jpg" alt="Perro chocolo" width="400px">
<a href="ficha_perros/perro1.html">Chocolo</a>
</li>
<br>
<li>
<img src="/assets/img/perro2.jpg" alt="Perro haaland" width="400px">
<a href="ficha_perros/perro2.html">Haaland</a>
</li>
<br>
<li>
<img src="/assets/img/perro3.jpg" alt="Perra cereza" width="400px">
<a href="ficha_perros/perro3.html">Cereza</a>
</li>
</ul>
</section>
</body>
</html>