-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout_us.html
41 lines (40 loc) · 2.63 KB
/
about_us.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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>PetHealth</title>
<script src="https://cdn.jsdelivr.net/npm/@popperjs/[email protected]/dist/umd/popper.min.js" integrity="sha384-oBqDVmMz9ATKxIep9tiCxS/Z9fNfEXiDAYTujMAeBAsjFuCZSmKbSSUnQlmh/jp3" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.min.js" integrity="sha384-mQ93GR66B00ZXjt0YO5KlohRA5SY2XofN4zfuZxLkoj1gXtW8ANNCe9d5Y3eG5eD" crossorigin="anonymous"></script>
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-GLhlTQ8iRABdZLl6O3oVMWSktQOp6b7In1Zl3/Jr59b6EGGoI1aFkw7cmDA6j6gD" crossorigin="anonymous">
</head>
<body>
<nav class="navbar sticky-top bg-body-tertiary navbar-expand-md">
<div class="container-fluid">
<a class="navbar-brand" href="index.html" style="font-size: 27.5px;">
<img src="logo.svg" alt="Logo" width="45" height="35" class="d-inline-block align-text-top">
PetHealth
</a>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarNav" aria-controls="navbarNav" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarNav">
<div class="collapse navbar-collapse" id="navbarNav">
<ul class="nav nav-pills">
<li class="nav-item"><a href="index.html" class="nav-link" aria-current="page">Home</a></li>
<li class="nav-item"><a href="more_info.html" class="nav-link" aria-current="page">More Info</a></li>
<li class="nav-item"><a href="purchase.html" class="nav-link" aria-current="page">Purchase</a></li>
<li class="nav-item"><a href="about_us.html" class="nav-link active" aria-current="page">About Us</a></li>
</ul>
</div>
</div>
</nav>
<div class=" p-5 bg-secondary text-white">
<h1 class="fs-1">About Us</h1>
<p>Additional information about PetHealth and its founders</p>
</div>
<div style="margin: 15px; margin-left: 40px;">
<br>
<p>This company was founded in the year 2023 as a result of co-founder Eshan Iyer's cousins dog getting sick repeatdly and for no apparent reason. It was only after visiting 5 vets that the dog was finally cursed and able to live a long and fulfilling life. This caused Eshan to partner with his business-minded friend Kunal to form PetHealth, a company that would go on to revolutionize the veterinary industry and extend the time with your loved pet.</p>
</body>
</html>