-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.html
More file actions
executable file
·86 lines (78 loc) · 2.95 KB
/
about.html
File metadata and controls
executable file
·86 lines (78 loc) · 2.95 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel= "stylesheet" href = ./bootstrap.min.css>
<title>Pawtastic</title>
</head>
<!-- Nav Bar Start-->
<nav class="navbar navbar-expand-lg navbar-dark bg-primary">
<div class="container-fluid">
<a class="navbar-brand" href="#">Paw Tastic</a>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarColor03" aria-controls="navbarColor03" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarColor03">
<ul class="navbar-nav me-auto">
<li class="nav-item">
<a class="nav-link active" href="index.php">Home
</a>
</li>
<li class="nav-item">
<a class="nav-link" href="Appointment.php">Shedule an Appointment</a>
</li>
<li class="nav-item">
<a class="nav-link" href="addClient.php">Add A New Client</a>
</li>
<li class="nav-item">
<a class="nav-link" href="newPet.php">Add A New Pet</a>
</li>
<li class="nav-item">
<a class="nav-link" href="viewCutCards.php">View Cut Cards</a>
</li>
<li class="nav-item">
<a class="nav-link" href="invoice.php">Invoice</a>
</li>
<li class="nav-item">
<a class="nav-link" href="stats.php">Stats</a>
</li>
<li class="nav-item">
<a class="nav-link" href="about.html">About</a>
</li>
</ul>
</div>
</div>
</nav>
<!-- Nav Bar End-->
<body>
<h1>
About The Project
</h1>
<p>
Paw Tastic is a free to use interface aimed at those who own a small pet grooming business.
</p>
<p>
What makes us unique is the simple and robust design of our website. Navigation between pages
is simply done through a top navigation bar, and dropdown menus ensure a business owner will
not run into any issues when inserting new entries into the database. The design has been
tailor-made using the guidance of a client that owns a small pet grooming business.
</p>
<h1>
About The Team
</h1>
<P>
Codi Chun - codichun@uw.edu
</P>
<p>
Damien Cruz - dcruz99@uw.edu
</p>
<p>
Raz Consta - razvanc@uw.edu
</p>
<p>
Ryan MacLeod - ryanmac1@uw.edu
</p>
</body>
</html>