-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvaccination.html
More file actions
70 lines (60 loc) · 3.24 KB
/
Copy pathvaccination.html
File metadata and controls
70 lines (60 loc) · 3.24 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Vaccination Schedule - VetClinic</title>
<link rel="stylesheet" href="styles.css" />
</head>
<body>
<!-- Navbar -->
<header class="navbar">
<a href="index.html" class="logo">VetClinic</a>
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="about.html">About</a></li>
<li><a href="services.html">Services</a></li>
<li><a href="booking.html">Booking</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
</nav>
</header>
<!-- Hero Section -->
<section class="page-hero">
<div class="hero-text">
<h1>Vaccination Schedule</h1>
</div>
</section>
<!-- Detailed Tip Content -->
<section class="tip-detail container">
<div class="tip-img-wrapper">
<img src="images/vaccination.jpg" alt="Vaccination Schedule" class="tip-img">
</div>
<h2>Why Vaccination is Important for Pets</h2>
<p>Vaccination is one of the most important steps in keeping your pet healthy and preventing the spread of infectious diseases. It helps to protect your pet from serious illnesses, some of which can be life-threatening. Regular vaccinations are essential for maintaining your pet’s overall health and wellbeing.</p>
<h3>Common Vaccines for Pets</h3>
<p>There are several vaccines available for pets. Some of the most common ones include:</p>
<ul>
<li><strong>Rabies:</strong> A deadly viral disease that affects the brain and is transmissible to humans.</li>
<li><strong>Distemper:</strong> A highly contagious viral infection that affects the respiratory, gastrointestinal, and nervous systems.</li>
<li><strong>Parvovirus:</strong> A viral disease that causes severe gastrointestinal distress and can be fatal if left untreated.</li>
<li><strong>Leptospirosis:</strong> A bacterial infection that affects the liver and kidneys.</li>
</ul>
<h3>When Should You Start Vaccination?</h3>
<p>The vaccination schedule for your pet depends on their age, breed, and health condition. Puppies and kittens should begin their vaccination regimen at 6-8 weeks of age. After the first set of vaccinations, they should receive booster shots every 3-4 weeks until they are about 16 weeks old. After that, annual booster shots are typically recommended for adult pets.</p>
<h3>Signs Your Pet Might Need a Vaccine Boost</h3>
<p>If your pet is showing signs of a preventable illness (such as lethargy, coughing, or loss of appetite), it might be time for a vaccination boost. Always consult with your veterinarian to ensure your pet's vaccines are up-to-date.</p>
<h3>Consult Your Veterinarian</h3>
<p>Your veterinarian will help determine the best vaccination schedule for your pet based on their specific needs, lifestyle, and risk of exposure to certain diseases.</p>
</section>
<!--Footer-->
<footer>
<div>
<p>© 2025 VetClinic. All rights reserved.</p>
<p> Email: info@VetClinic.com | Phone: +234-802-718-6490</p>
<p><i>Built by: BossTech.Co</i></p>
</div>
</footer>
</body>
</html>