-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcare_guide.html
More file actions
280 lines (256 loc) · 7.43 KB
/
care_guide.html
File metadata and controls
280 lines (256 loc) · 7.43 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
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
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>CareGuide-DoggyFoster</title>
<link
href="https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;700&display=swap"
rel="stylesheet"
/>
<style>
:root {
--primary-color: blueviolet;
--secondary-color: green;
--accent-color: blueviolet;
--text-color: black;
--card-bg: whitesmoke;
--body-bg: #e8ebe0;
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
background-color: var(--body-bg);
color: var(--text-color);
font-family: "Montserrat", sans-serif;
line-height: 1.6;
padding: 0;
}
.navbar-perm {
position: relative;
width: 70%;
height: 30px;
display: flex;
transform: translateY(20px);
justify-content: space-between;
padding: 0 20px;
background-color: black;
color: whitesmoke;
border: 1px solid darkgray;
backdrop-filter: blur(8px);
border-radius: 20px;
margin: 0 auto 20px auto;
}
.navbar-links {
align-self: center;
}
.navbar-links ul {
padding: 0;
margin: 0;
}
.navbar-logo {
align-self: right;
}
.navbar-links img {
height: 20px;
width: 20px;
background-size: contain;
vertical-align: middle;
}
li {
display: inline-block;
}
a {
color: whitesmoke;
text-decoration: none;
}
.container {
max-width: 1200px;
margin: 0 auto;
padding: 0 20px;
}
.cart-icon {
height: 20px;
width: 20px;
vertical-align: middle;
margin-right: 5px;
}
.header {
text-align: center;
padding: 20px 0 20px;
}
.header h1 {
font-size: 4rem;
color: black;
margin-bottom: 15px;
}
.header p {
color: black;
font-size: 1.1rem;
margin-bottom: 30px;
}
.cards-container {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 25px;
margin-bottom: 40px;
}
.card {
background-color: var(--card-bg);
border-radius: 10px;
padding: 25px;
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
transition:
transform 0.3s,
box-shadow 0.3s;
}
.card:hover {
transform: translateY(-5px);
box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}
.card h2 {
color: var(--primary-color);
margin-bottom: 15px;
padding-bottom: 10px;
border-bottom: 2px solid var(--accent-color);
}
.card p {
margin-bottom: 12px;
}
.card b {
color: var(--accent-color);
}
footer {
width: 100%;
text-align: center;
padding: 20px 0;
background-color: #333;
color: white;
margin-top: 20px;
}
@media (max-width: 768px) {
.navbar-links ul {
gap: 10px;
}
.cards-container {
grid-template-columns: 1fr;
}
}
</style>
</head>
<body>
<div class="navbar-perm">
<div class="navbar-links">
<nav>
<ul style="list-style: none">
<li style="display: inline-block; margin-right: 10px">
<a href="home.html" style="color: whitesmoke">Home</a>
</li>
<li style="display: inline-block; margin-right: 10px">
<a href="adopt.html" style="color: whitesmoke">Adopt</a>
</li>
<li style="display: inline-block; margin-right: 10px">
<a href="care_guide.html" style="color: whitesmoke">Care Guide</a>
</li>
<li style="display: inline-block; margin-right: 10px">
<a href="accessories.html" style="color: whitesmoke"
>Accessories</a
>
</li>
<li style="display: inline-block; margin-right: 10px">
<a href="cart.html" style="color: whitesmoke"
>(<img
src="images/shooping-cart-img.png"
alt="shopping-cart"
/>)</a
>
</li>
</ul>
</nav>
</div>
<div class="navbar-logo">
<h3 style="margin: 0; transform: translateY(2px)">DoggyFoster</h3>
</div>
</div>
<header class="header container">
<h1>Pet Care Guide</h1>
<p>Here are some tips to take care of your pet</p>
</header>
<main class="container">
<div class="cards-container">
<div class="card">
<h2>General Care</h2>
<p><b>1.</b> Feed your pet a balanced diet.</p>
<p><b>2.</b> Provide fresh water at all times.</p>
<p><b>3.</b> Take your pet to the vet regularly.</p>
<p><b>4.</b> Keep your pet clean and groomed.</p>
</div>
<div class="card">
<h2>Dog Nutrition</h2>
<p>
<b>1.</b> Dogs need a balanced diet of protein, carbohydrates, fats,
vitamins, and minerals.
</p>
<p>
<b>2.</b> Avoid feeding your dog chocolate, grapes, and raisins.
</p>
<p>
<b>3.</b> Make sure your dog has access to fresh water at all times.
</p>
<p>
<b>4.</b> Consult your vet for advice on the best diet for your dog.
</p>
</div>
<div class="card">
<h2>Dogs and Babies</h2>
<p>
<b>1.</b>
<i>Always supervise interactions between dogs and babies.</i>
</p>
<p><b>2.</b> <i>Teach your child to be gentle with the dog.</i></p>
<p><b>3.</b> <i>Never leave your baby alone with a dog.</i></p>
<p><b>4.</b> Make sure your dog is up-to-date on vaccinations.</p>
<p>
<b>5.</b> Train your dog to obey basic commands when babies are
around.
</p>
</div>
<div class="card">
<h2>Dog Grooming</h2>
<p><b>1.</b> Brush your dog's coat regularly to prevent matting.</p>
<p><b>2.</b> Trim your dog's nails to prevent overgrowth.</p>
<p><b>3.</b> Bathe your dog with dog-friendly shampoo.</p>
<p><b>4.</b> Check your dog's ears for signs of infection.</p>
<p>
<b>5.</b> Brush your dog's teeth regularly to prevent dental
problems.
</p>
</div>
<div class="card">
<h2>Common Diseases and Treatment</h2>
<p><b>1.</b> <b>Heartworm</b>: Prevent with monthly medication.</p>
<p>
<b>2.</b> <b>Fleas and Ticks</b>: Use flea and tick prevention
products.
</p>
<p>
<b>3.</b> <b>Parvovirus</b>: Vaccinate your dog against parvovirus.
</p>
<p>
<b>4.</b> <b>Kennel Cough</b>: Vaccinate your dog against kennel
cough.
</p>
<p>
<b>5.</b> <b>Dental Disease</b>: Brush your dog's teeth regularly.
</p>
</div>
</div>
</main>
<footer class="footer">
<p>©️ 2025 DoggyFoster - All Rights Reserved</p>
</footer>
</body>
</html>