Untitled
unknown
plain_text
15 days ago
3.0 kB
6
Indexable
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Pawsitive Health Supplements</title> <style> body { font-family: Arial, sans-serif; margin: 0; padding: 0; background-color: #f4f4f4; } header { background-color: #4CAF50; color: white; padding: 1em; text-align: center; } nav { display: flex; justify-content: center; background-color: #333; } nav a { color: white; padding: 14px 20px; text-decoration: none; text-align: center; } nav a:hover { background-color: #ddd; color: black; } .container { padding: 20px; } .vet-search, .contact { margin: 20px 0; } footer { background-color: #333; color: white; text-align: center; padding: 10px 0; position: fixed; width: 100%; bottom: 0; } </style> </head> <body> <header> <h1>Welcome to Pawsitive Health Supplements</h1> </header> <nav> <a href="#home">Home</a> <a href="#about">About Us</a> <a href="#products">Products</a> <a href="#vet-search">Find a Vet</a> <a href="#contact">Contact Us</a> </nav> <div class="container"> <section id="home"> <h2>Home</h2> <p>Welcome to Pawsitive Health Supplements, your trusted source for high-quality pet supplements.</p> </section> <section id="about"> <h2>About Us</h2> <p>We are dedicated to providing the best supplements for your pets to ensure their health and happiness.</p> </section> <section id="products"> <h2>Our Products</h2> <p>Explore our range of supplements designed to meet the unique needs of your pets.</p> </section> <section id="vet-search" class="vet-search"> <h2>Find a Vet</h2> <p>Use the form below to find a vet near you:</p> <form> <label for="zip">Enter your ZIP code:</label> <input type="text" id="zip" name="zip"> <button type="submit">Search</button> </form> </section> <section id="contact" class="contact"> <h2>Contact Us</h2> <p>Phone: 1-800-PAWS-HEALTH (1-800-729-7432)</p> <p>Email: support@pawsitivehealth.com</p> </section> </div> <footer> <p>© 2025 Pawsitive Health Supplements. All rights reserved.</p> </footer> </body> </html>
Editor is loading...
Leave a Comment