-
Notifications
You must be signed in to change notification settings - Fork 0
/
Peteventandactivities.html
39 lines (37 loc) · 1.14 KB
/
Peteventandactivities.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Pet Store Events & Activities</title>
<link rel="stylesheet" href="panda.css">
</head>
<body>
<header>
<h1>Pet Store Events & Activities</h1>
</header>
<nav>
<a href="main_page.html">Home</a>
<a href="joinus.html">About Us</a>
<a href="adopt.html">Adopt a Pet</a>
<a href="UID_Proj_GiveUpPet_2.html">Give Up a Pet</a>
<a href="Great.html">Training Programs</a>
<a href="Peteventandactivities.html">Events & Activities</a>
<a href="UID_Proj_Pet_Food_2.html">Buy Food</a>
<a href="UID_Proj_Pet_Accessories_2.html">Buy Accessories</a>
<a href="vet-entry.html">Call a Vet</a>
<a href="signin.html">Sign In</a>
<a href="signup.html">Sign Up</a>
</nav>
<section id="events">
<div id="filters">
<label for="date-filter">Filter by Date:</label>
<input type="date" id="date-filter">
</div>
<ul id="event-list">
<!-- Events will be dynamically added here -->
</ul>
</section>
<script src="script1.js"></script>
</body>
</html>