diff --git a/contact.html b/contact.html new file mode 100644 index 0000000..13e5a1e --- /dev/null +++ b/contact.html @@ -0,0 +1,128 @@ + + + + + + + Contact Page + + + + + + + + + + + + + + + + + + +
+
+ +
+ Fair Pets Vet Logo +
+ + +
+
+ home +
+ + +
+
+
+ + +
+
+ +
+

Contact Us

+

Operating Hours:
Mon - Fri: 8am - 8pm,
Sat: 9am - 5pm,
Sun: Closed

+

Phone:
(654)130-9122

+

Email:
fairpetsvet@gmail.com

+

Address:
3818 Blackwell Street, Fairbanks, Alaska

+
+ + +
+

Have a question?

+
+
+ + +
+
+ + +
+
+ + +
+
+ + +
+
+ + +
+ Submit +
+
+
+
+ + + + diff --git a/services.html b/services.html new file mode 100644 index 0000000..795f2ac --- /dev/null +++ b/services.html @@ -0,0 +1,112 @@ + + + + + + + Services Page + + + + + + + + + + + + + + + + + + +
+
+ +
+ Fair Pets Vet Logo +
+ + +
+
+ home +
+ + +
+
+
+ +
+

SELECT a service to see the details

+
+ + + + + + +
+
+ +
We provide 24 hours a day emergency medical services 365 days a year, without appointment, to complement the services offered by your regular veterinarian.
+ +
A complete veterinary examination is the best way to ensure the overall health of your pet and prevent the onset and development of certain diseases and discomforts.
+ +
Please contact a member of our team for more information on the X-ray.
+ +
If you notice changes in how your pet chews, a significant amount of tartar, redness of the gums, bad breath or other anomalies, let us know and come see us for a check-up.
+ +
Vaccine helps the immune system defend itself in the event of exposure to a disease or virus. Our team will offer advice based on age and lifestyle.
+ +
We will create a treatment plan to care for your pet. In all cases, a general examination and blood work will be done before the surgical procedure.
+
+
+ + + + \ No newline at end of file diff --git a/style.css b/style.css index fd997d4..3d1ad28 100644 --- a/style.css +++ b/style.css @@ -159,4 +159,72 @@ h2{ 1px -1px 0 white, -1px 1px 0 white, 1px 1px 0 white; -} \ No newline at end of file +} + + +.select-title { + font-family: lalezar; + margin-bottom: 4%; +} +.service-container { + display: flex; + flex-wrap: wrap; + gap: 30px; + justify-content: center; +} +.service-item { + width: 30%; + font-family: mina; + font-weight: 700; + font-size: 3vw; + height: 120px; + display: flex; + align-items: center; + justify-content: center; + border-radius:10px; + padding: 20px; + cursor: pointer; + color: white; + margin-bottom: 3%; +} +.service-item:nth-child(odd) { + background-color: #F37935; +} +.service-item:nth-child(even) { + background-color: #2579A2; +} +.service-description { + font-family: mina; + font-size:15pt; + border: 6px solid #FFDF8B; + background-color: #fff; + color: #000; + display: none; + text-align: center; + border-radius: 15px; + margin: 0 auto; + width: 85%; + padding:40px; +} +input[type="radio"] { + display: none; +} +input[type="radio"]:checked + .service-description { + display: block; +} +.contact-title{ + font-family: lalezar; + color: #2579a2; + font-size: 25pt; +} +.contact-info p, .form-label{ + font-family: mina; + color:#2579a2; +} +.contact-container { + margin-top: 50px; + margin-bottom: 5%; +} +.inquiry-form .form-control, .inquiry-form .btn { + margin-bottom: 15px; +}