-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
92 lines (84 loc) · 4.71 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Paradigm Pet Professionals</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<header>
<img src="images/ppetbrand.png" alt="Brand Logo" class="logo">
<img src="images/pheader.png" alt="Header Logo" class="header">
<p>Evidence-based pet care advice for every pet lover</p>
</header>
<nav>
<form action="search_results.html" method="get">
<input type="text" placeholder="Search" class="search-bar" name="query">
<button type="submit">Search</button>
</form>
<ul>
<li><a href="index.html" class="active">Home</a></li>
<li><a href="cat.html">Cats</a></li>
<li><a href="dog.html">Dogs</a></li>
<li><a href="bird.html">Birds</a></li>
<li><a href="faq.html">FAQ</a></li>
</ul>
</nav>
<main>
<!-- Breadcrumb for the homepage -->
<section class="breadcrumb">
<a href="index.html">Home</a>
</section>
<section class="intro">
<p>Pets are nature's gift to humanity. It has been scientifically proven that opening our homes and hearts to a pet increases our longevity and improves our overall quality of life as well as the lives of our pets. At Pet Paradigm Professionals, our mission is to offer resources to help you care for your furry, scaly, feathery, and slimy loved ones. Our pet experts—or “Pexperts”—have been working with pet owners and professionals alike for the past twelve years. They offer one-on-one consultations with current and prospective pet owners as well as group presentations designed for veterinary, pet shelter, and pet breeding professionals.</p>
<p>Looking for basic pet care advice for the most common type of pets? Need additional help determining which type of pet is right for you and your family? We will work with you and provide tailored evidence-based pet care to ensure lifelong health and wellness of your new companion.</p>
</section>
<section class="adoption-links">
<h2>Adoption Resources</h2>
<ul>
<li><a href="https://home-home.org/" target="_blank">General Adoption Resources</a></li>
<li><a href="https://www.aspca.org/" target="_blank">ASPCA</a></li>
<li><a href="https://www.sterlingshelter.org/humane-society/koi-fish-rescue/" target="_blank">Fish Rescue</a></li>
<li><a href="https://savethesnakes.org/snakerescuecall/" target="_blank">Snake Rescue</a></li>
<li><a href="https://ftlob.rescuegroups.org/" target="_blank">Bird Rescue</a></li>
</ul>
</section>
<section class="consultation-form">
<h2>Request a Consultation</h2>
<form action="submit_form.php" method="post">
<label for="name">Name:</label>
<input type="text" id="name" name="name" required>
<label for="email">Email:</label>
<input type="email" id="email" name="email" required>
<label for="phone">Phone:</label>
<input type="tel" id="phone" name="phone" required>
<label for="pet-type">Type of Pet:</label>
<select id="pet-type" name="pet-type" required>
<option value="cat">Cat</option>
<option value="dog">Dog</option>
<option value="bird">Bird</option>
<option value="other">Other</option>
</select>
<label for="timezone">Time Zone:</label>
<input type="text" id="timezone" name="timezone" required>
<label for="pet-name">Pet's Name:</label>
<input type="text" id="pet-name" name="pet-name" required>
<label for="pet-age">Pet's Age:</label>
<input type="number" id="pet-age" name="pet-age" required>
<label for="message">Message:</label>
<textarea id="message" name="message" required></textarea>
<button type="submit">Submit</button>
</form>
</section>
<section class="images">
<img src="images/bird1.png" alt="Image of bird">
<img src="images/cat1.png" alt="Image of cat">
<img src="images/dog1.png" alt="Image of dog">
</section>
</main>
<footer>
<p>© 2024 Paradigm Pet Professionals. All rights reserved.</p>
</footer>
</body>
</html>