-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.html
82 lines (80 loc) · 3.38 KB
/
contact.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
<!DOCTYPE html>
<html lang="en-us">
<head>
<meta charset="UTF-8" />
<link rel="stylesheet" href="style.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Fira+Sans&family=Ubuntu&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Dancing+Script:wght@700&display=swap" rel="stylesheet">
<!-- Social Icons -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<title>Fluffy Puppies</title>
</head>
<!-- Navbar -->
<body>
<div class="header">
<h1><img src="images/Fluffy-Puppies-logos-black.jpg" alt="logo" id="navbarLogo"></h1>
<div>
<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="contact.html">Contact</a>
</li>
<li>
<a href="faq.html">FAQ</a>
</li>
<li>
<a href="clients.html">Our Clients</a>
</li>
</ul>
</div>
</div>
<!--Cards-->
<div class="hero"></div>
<p id="abouthead">Contact Us</p>
<div class="contact-card">
<a><img src="images/contactdog.jpg" alt="contact" id="contactdog" class="float-right" /></a>
<p>
We are always prepared for any pets' needs and ensure that your pet will receive the best care and love.
Their happiness and care is our priority and we strive to provide a service we would want our own pets to receive.
If for any reason you are not satisfied with our services please contact us so we can make it right.
</p>
<table id="table">
<tr><th>Sunday</th><td>Closed</td></tr>
<tr><th>Monday</th><td>8am - 6pm</td></tr>
<tr><th>Tuesday</th><td>8am - 6pm</td></tr>
<tr><th>Wednesday</th><td>8am - 6pm</td></tr>
<tr><th>Thursday</th><td>8am - 6pm</td></tr>
</table>
</div>
<div id="contact" class="contact">
<a href="services.html"><img src="images/reception.jpeg" alt="reception" class="float-right" /></a>
<h2>Let's Get Your Pet Scheduled</h2>
<ul>
<li>Hours: Monday - Saturday 8:00am - 6:00pm</li>
<li>Schedule an appointment at 216.555.1234</li>
<li>Also find us on Social Media Below!</li>
</ul>
<a href="http://www.facebook.com" class="fa fa-facebook"></a>
<a href="http://www.twitter.com" class="fa fa-twitter"></a>
<a href="http://www.instagram.com" class="fa fa-instagram"></a>
<a href="http://www.pinterest.com" class="fa fa-pinterest"></a>
</div>
<div class="footer">
<h2>Made with ❤️️ by Branden</h2>
<p>
216 Atlantic Avenue ~ Cleveland, Ohio. 44138 ~ Tel: 216 555-1234
© 2021 Fluffy Puppies, Inc.
</p>
</div>
</body>
</html>