-
Notifications
You must be signed in to change notification settings - Fork 0
/
contactinfo.html
72 lines (61 loc) · 3.12 KB
/
contactinfo.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
<!-- Document type with link attchments still on contact info html -->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="Pet's Bytes - Your go-to app for all pet-related services">
<meta name="keywords" content="pets, veterinarians, pet sitters, dog walking, pet grooming">
<title>Pet's Bytes!</title>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/foundation/6.4.3/css/foundation.min.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/jqueryui/1.12.1/jquery-ui.min.css">
<link rel="stylesheet" href="./assets/css/style.css">
<link rel="stylesheet" href="./assets/css/contactinfo.css">
</head>
<body>
<!-- Site Header -->
<header class="top-bar">
<h1>Pet's Bytes</h1>
<!-- Navigation -->
<nav>
<ul class="nav-items">
<li><a href="index.html">Home</a></li>
<li><a href="#Vet">Vet Services</a></li>
<li><a href="#Grooming">Pet Grooming Services</a></li>
<li><a href="#Walker">Pet Walking Services</a></li>
<li><a href="#PetFood">Pet Food and Products</a></li>
</ul>
</nav>
</header>
<body>>
<main class="grid-container">
<section id="Vet">
<h1 id="h1-vetinfo">Vet Contact Info: (951) 473-2227</h1>
<p id="vet-info"> Vet info: Dr. Pet's Bytes </p>
<img class="vetimg" src="https://img.freepik.com/free-vector/cute-dog-doctor-with-stethoscope-cartoon-vector-icon-illustration-animal-healthcare-icon-isolated_138676-5182.jpg?size=626&ext=jpg&ga=GA1.2.243159164.1707266342&semt=ais" alt="doctor dog">
</section>
<section id="Grooming">
<h1 id="h1-grooming">Pet grooming</h1>
<p id="p-grooming">Pet grooming services here</p>
<img src="https://assets3.thrillist.com/v1/image/3059921/1584x832/scale;webp=auto;jpeg_quality=60;progressive.jpg" alt="Cat grooming">
</section>
<section id="Walker">
<h1 id="h1-walker">Pet walker/sitter</h1>
<p id="p-walker">Pet walker/sitter info here</p>
<img src="https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQSzxdNpR31Chfeg38hWzWICEPBWIS88yD0Ew&usqp=CAU" alt="lady walking dog">
</section>
<section id="PetFood">
<h1 id="h1-petfood">Pet food and products</h1>
<p id="p-petfood">Pet food and products here</p>
<img class="foodbowl" src="https://media.istockphoto.com/id/1368129686/vector/pets-with-bowl-food.jpg?s=612x612&w=0&k=20&c=9vV5CZjdchE_w-n0BUt62s_CAVP3Fg_YTT5kNDqTTZA=" alt="pet food">
</section>
<!-- Site Footer -->
<section id="footer" class="content">
<footer class="footer">
<p>© <span id="current-year"></span> Pet's Bytes</p>
</footer>
</section>
</main>
<script src="./assets/js/script.js"></script>
</body>
</html>