-
Notifications
You must be signed in to change notification settings - Fork 0
/
collection.html
151 lines (149 loc) · 5.03 KB
/
collection.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
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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
<!DOCTYPE html>
<html lang="pt-BR">
<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>Gatito Pet Shop</title>
<link rel="stylesheet" href="css/style.css" />
<link rel="stylesheet" href="css/reset.css" />
</head>
<body>
<header class="header">
<figure class="header__logo">
<img src="assets/img/logo.png" alt="Logo" class="header__img" />
</figure>
<nav class="header__menu menu">
<ul class="menu__list">
<li class="menu__links">
<a href="./index.html" class="menu__link">Página inicial</a>
</li>
<li class="menu__links">
<a href="./about.html" class="menu__link">Sobre nós</a>
</li>
<li class="menu__links">
<a href="./collection.html" class="menu__link">Cães</a>
</li>
<li class="menu__links">
<a href="./collection.html" class="menu__link">Gatos</a>
</li>
<li class="menu__links">
<a href="./collection.html" class="menu__link">Pássaros</a>
</li>
<li class="menu__links"><a href="./contact.html" class="menu__link">Contato</a></li>
</ul>
</nav>
</header>
<div class="collection">
<div class="collection__breadcrumb breadcrumb">
<a href="index.html" class="breadcrumb__link">Home</a>
<img src="assets/img/arrow.svg" alt="Seta" class="breadcrumb__img" />
<a href="collection.html" class="breadcrumb__link">Posts</a>
</div>
<div class="collection__post">
<figure class="collection__figure">
<img
src="assets/img/dog.jpg"
alt="Cachorro"
class="collection__img"
/>
</figure>
<div class="collection__about">
<a href="article.html" class="collection__title"
>Cuidados com os animais durante a quarentena</a
>
<p class="collection__date">20/08/2020</p>
<span class="collection__tag">Cães</span>
</div>
</div>
<div class="collection__post half">
<figure class="collection__figure">
<img
src="assets/img/party.jpg"
alt="Cachorro festa"
class="collection__img"
/>
</figure>
<div class="collection__about">
<a href="article.html" class="collection__title half"
>Como manter a saúde do seu pet</a
>
<p class="collection__date">09/08/2020</p>
<span class="collection__tag">Cães</span>
</div>
</div>
<div class="collection__post half">
<figure class="collection__figure">
<img
src="assets/img/car.jpg"
alt="Cachorro carro"
class="collection__img"
/>
</figure>
<div class="collection__about">
<a href="article.html" class="collection__title half"
>Como transportar seu pet com segurança</a
>
<p class="collection__date">23/07/2020</p>
<span class="collection__tag">Cães</span>
</div>
</div>
<div class="collection__post">
<figure class="collection__figure">
<img
src="assets/img/sun.jpg"
alt="Cachorro oculos"
class="collection__img"
/>
</figure>
<div class="collection__about">
<a href="article.html" class="collection__title"
>Cuidados com os animais no verão</a
>
<p class="collection__date">12/07/2020</p>
<span class="collection__tag">Cães</span>
</div>
</div>
<div class="collection__post half">
<figure class="collection__figure">
<img
src="assets/img/kid.jpg"
alt="Cachorro e criança"
class="collection__img"
/>
</figure>
<div class="collection__about">
<a href="article.html" class="collection__title half"
>5 raças de cachorro para quem tem crianças</a
>
<p class="collection__date">02/07/2020</p>
<span class="collection__tag">Cães</span>
</div>
</div>
<div class="collection__post half">
<figure class="collection__figure">
<img
src="assets/img/adopt.jpg"
alt="Cachorro adotado"
class="collection__img"
/>
</figure>
<div class="collection__about">
<a href="article.html" class="collection__title half"
>Lugares para adotar cachorros em São Paulo</a
>
<p class="collection__date">16/06/2020</p>
<span class="collection__tag">Cães</span>
</div>
</div>
</div>
<footer class="footer">
<img
src="./assets/img/footer-logo.png"
alt="Footer logo"
class="footer__logo"
/>
<p class="footer__txt">2022 Gatito Blog. All rights reserved.</p>
</footer>
</body>
</html>