-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
48 lines (47 loc) · 2.86 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
<!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://www.jsdelivr.com/package/npm/pdfjs-dist" crossorigin="anonymous"></script>
<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 active" 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 " aria-current="page">About Us</a></li>
</ul>
</div>
</div>
</nav>
<div class="px-4 py-5 my-5 text-center">
<img class="d-block mx-auto mb-4" src="logo.svg" alt="" width="72" height="57">
<h1 class="display-5 fw-bold">PetHealth</h1>
<div class="col-lg-6 mx-auto">
<p class="lead mb-4">"The revolutionary collar that keeps your pet healthy!"<br>The collar also provides additional data and metrics like average calorie burned per day, BMI, etc.</p>
<br>
<div class="d-grid gap-2 d-sm-flex justify-content-sm-center">
<a type="button" class="btn btn-primary btn-lg px-4 gap-3 " href="more_info.html" >More Info</a>
<a type="button" class="btn btn-primary btn-lg px-4" href="purchase.html">Purchase now</a>
<a type="button" class="btn btn-primary btn-lg px-4" href="about_us" >About Us</a>
</div>
</div>
</div>
</body>
</html>