-
Notifications
You must be signed in to change notification settings - Fork 0
/
favoritos.html
63 lines (55 loc) · 2.72 KB
/
favoritos.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
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Mascotas Favoritas</title>
<link rel="shortcut icon" href="https://images.vexels.com/media/users/3/158509/isolated/lists/e6a3a6c0c9ee65435e3b5cb2aef9693f-perro-cachorro-plano.png">
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.0-beta3/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-eOJMYsd53ii+scO/bJGFsiCZc+5NDVN2yr8+0RDqr0Ql0h+rP48ckxlpbzKgwra6" crossorigin="anonymous">
<link rel="stylesheet" type="text/css" href="//fonts.googleapis.com/css?family=Nunito" />
<link rel="stylesheet" href="styles/index.css">
<link rel="stylesheet" href="styles/principal.css">
</head>
<body id="home">
<header>
<div class="container-fluid">
<div class="row">
<div class="col mt-5 titulo">
<h1 class="Headline1">Mascotas Favoritas</h1>
</div>
</div>
</div>
</header>
<main>
<div class="container-fluid mt-4 mb-5">
<div class="row row-cols-2 row-cols-md-2 g-4 grid-mascotas">
<!--<div class="col columna1">
</div>
<div class="col pt-3 columna2">
</div>-->
</div>
</div>
</main>
<footer>
<nav class="navbar navbar-expand-lg navbar-light bg-light menu-mascotas">
<div class="container-fluid">
<a class="nav-link active" aria-current="page" href="index2.html" tabindex="-1">
<img src="https://i.ibb.co/6gqbqj7/Property-1-home.png" alt="" width="24" height="24"></a>
<a class="nav-link-mensaje" aria-current="page" href="mensajes.html" tabindex="-1">
<img src="https://i.ibb.co/SNtNhhC/Property-1-message-circle.png" alt="" width="24" height="24"></a>
<a class="nav-link" aria-current="page" href="favoritos.html" tabindex="-1">
<img class="icono-activo" src="https://i.ibb.co/1RhvJZv/favoritos.png" alt="" width="24" height="24"></a>
<a class="nav-link" aria-current="page" href="usuario.html" tabindex="-1">
<img src="https://i.ibb.co/3RMCBkL/Component-2.png" alt="" width="24" height="24">
</a>
</div>
</nav>
</footer>
</body>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.0.0-beta3/dist/js/bootstrap.bundle.min.js"
integrity="sha384-JEW9xMcG8R+pH31jmWH6WWP0WintQrMb4s7ZOdauHnUtxwoG2vI5DkLtS3qm9Ekf"
crossorigin="anonymous"></script>
<script type="module" src="app/favoritos.js"></script>
</html>