-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpetlist.html
More file actions
72 lines (64 loc) · 1.89 KB
/
petlist.html
File metadata and controls
72 lines (64 loc) · 1.89 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
<html>
<head>
<link rel="stylesheet" href="index.css">
<link href="https://fonts.googleapis.com/css2?family=Slabo+13px&family=Ultra&display=swap" rel="stylesheet">
<style>
h1 {
font-family: "Ultra", Arial, Helvetica;
}
body {
font-family: "Slabo 13px", Arial, Helvetica
}
</style>
<h1 class="center">PawStation.org</h1>
<table class="center" border="1">
<tr>
<th><a href="index.html">Home</a></th>
<th><a href="about.html">Our Mission</a></th>
<th><a href="petlist.html">Furry Friends</a></th>
<th><a href="locate.html">Locations Near You</a></th>
<th><a href="contactform.html">Contact Us</a></th>
</tr>
</table>
<h2 class="center">Pet Index</h2>
</head>
<body>
<table class="center" border="1">
<tr>
<th>Animal Type</a></th>
<th>How Many?</th>
<th>Age Range</th>
</tr>
<tr>
<th><a href="dogPage.html">Cool Canines</a></th>
<th>6</th>
<th>1-8 yrs</th>
</tr>
<tr>
<th><a href="catPage.html">Friendly Felines</a></th>
<th>7</th>
<th>2-6 yrs</th>
</tr>
<tr>
<th><a href="birdPage.html">Feathered Folks</a></th>
<th>6</th>
<th>6 months - 2 yrs</th>
</tr>
<tr>
<th><a href="reptilePage.html">Scaled Scoundrels</a></th>
<th>4</th>
<th>4-10 yrs</th>
</tr>
<tr>
<th><a href="primatePage.html">Our Ancestors?</a></th>
<th>4</th>
<th>6 & 12 yrs</th>
</tr>
</table>
<p><br/><br/><small>Copyright © 2021 Pawstation.org</small><br/><br/></p>
<audio controls autoplay loop>
<source src="music/dsi.mp3" type="audio/ogg">
<embed src="music/dsi.mp3" autostart="true" loop="true" hidden="false"></embed>
</audio>
</body>
</html>