-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
116 lines (104 loc) · 4.39 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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Home Page</title>
<meta name="description"
content="Welcome to Fair Pets Vet, providing high-end veterinary care with love and compassion.">
<meta name="keywords" content="veterinary care, pets, clinic, Fair Pets Vet, veterinary, veterinarian">
<meta name="author" content="Qiutian Wang">
<!-- Bootstrap CSS -->
<link href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css" rel="stylesheet">
<!-- Material Icons -->
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<!-- Custom CSS -->
<link href="https://fonts.googleapis.com/css2?family=Lalezar&family=Mina:wght@400;700&display=swap"
rel="stylesheet">
<link href="style.css" rel="stylesheet">
</head>
<body id="index">
<!-- Header -->
<header class="py-3">
<div class="container d-flex justify-content-between align-items-center position-relative">
<!-- Logo -->
<div>
<img src="/logo.png" alt="Fair Pets Vet Logo" class="img-fluid" style="max-height: 100px;">
</div>
<!-- Home Icon -->
<div class="col-md-7 d-flex justify-content-end">
<div class="home-icon">
<a href="index.html" class="material-icons">home</a>
</div>
<!-- Navbar -->
<nav>
<ul class="nav">
<li class="nav-item">
<a class="nav-link" href="services.html">Services</a>
</li>
<li class="nav-item">
<a class="nav-link" href="appointment.html">Appointment</a>
</li>
<li class="nav-item">
<a class="nav-link" href="staff.html">Staffs</a>
</li>
<li class="nav-item">
<a class="nav-link" href="products.html">Products</a>
</li>
<li class="nav-item">
<a class="nav-link" href="contact.html">Contact Us</a>
</li>
</ul>
</nav>
</div>
</div>
</header>
<!-- Main Content -->
<main class="container my-5">
<div class="row">
<!-- Left Section -->
<div class="col-md-6">
<section id="about-us" class="mb-6">
<h2>About Us</h2>
<p>
We are Clinic Fair Pets Veterinary, a small vet clinic that wants to provide high-end veterinary
care with love and compassion for our favorite household family member. We promote optimal
health for all stages of life.
</p>
<!-- Book Your Visit Button -->
<a href="appointment.html" class="btn btn-primary">Book Your Visit</a>
</section>
</div>
<!-- Right Section -->
<div class="col-md-6 align-self-end text-md-right mt-3 mt-md-0">
<div id="products" class="mb-6">
<!-- Our Products Button -->
<a href="products.html" class="btn btn-secondary">Our Products</a>
</div>
</div>
</div>
</main>
<!-- Footer -->
<footer class="footer">
<div class="container">
<div class="row">
<div class="col-md-4">
<h5 class="email"><span class="material-icons">email</span> Email</h5>
<p class="email">[email protected]</p>
</div>
<div class="col-md-4">
<h5 class="location"><span class="material-icons">location_on</span> Address</h5>
<p class="location">3818 Blackwell Street, Fairbanks, Alaska</p>
</div>
<div class="col-md-4">
<h5 class="tel"><span class="material-icons">phone</span> Tel</h5>
<p class="tel">(654)130-9122</p>
</div>
</div>
</div>
<div class="container text-center">
<p class="copyright">© 2024 Fair Pets Vet. All rights reserved.</p>
</div>
</footer>
</body>
</html>