-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdetail.html
More file actions
98 lines (86 loc) · 3.97 KB
/
Copy pathdetail.html
File metadata and controls
98 lines (86 loc) · 3.97 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
92
93
94
95
96
97
98
<!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">
<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/detail.css">
<link rel="stylesheet" href="styles/principal.css">
<title>Detalle de mascota</title>
</head>
<body id="detalle">
<header>
<div class="imagen_mascota">
</div>
<a class='flotante-atras' href='index.html'><img src="https://i.ibb.co/gwWm0MX/back.png" /></a>
</header>
<main>
<div class="content-fluid descripcion-mascota mt-3">
<div class="datos mx-4 mt-2">
<div class="nombre-mascota mt-4">
</div>
<div class="iconoFavorito">
</div>
<div class="raza-mascota mt-4">
</div>
<div class="lugar-mascota mt-3">
</div>
</div>
<div class="personalidad-mascota mx-4 mt-4">
<div class="titulo-personalidad mt-4 Headline2">
<p class="Headline2">Personalidad</p>
</div>
<div class="personalidad-cards ms-2 me-2 mt-1">
<div class="row personalidades">
</div>
</div>
</div>
<div class="historia-mascota mx-4 mt-3">
</div>
<div class="contactar mx-4 mb-5">
<div class="row">
<div class="col-6">
<div class="row">
<div class="col-4 img-usuario">
</div>
<div class="col-8 mt-2 ">
<div class="row">
<p class="caption mb-1">Publicado por</p>
</div>
<div class="row nombre-contacto">
</div>
</div>
</div>
</div>
<div class="col-6">
<a href="contacto.html" class="btn btn-secondary btn-contactar buttom"
onClick="contacto()">
Contactar
</a>
</div>
</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 class="icono-activo" src="https://i.ibb.co/2ZcsN2F/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 src="https://i.ibb.co/z23WHsF/Property-1-heart.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>
<script type="module" src="app/detail.js"></script>
</body>
</html>