-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpets.html
106 lines (106 loc) · 4.57 KB
/
pets.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
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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
<!DOCTYPE html>
<html lang="en">
<head>
<title>Paw Rescue</title>
<meta charset="utf-8">
<link rel="stylesheet" href="dog-adoption-styling.css">
</head>
<body onload="updateTime()">
<header>
<table>
<tr>
<td>
<a href="index.html">
<img id="logo" src="images/shiro-bodybuilder.jpg" alt="Shiro super hero!!">
<!--Pinterest, https://pin.it/3Fx9in3QU -->
</a>
</td>
<th>CAREFOR PAWS</th>
<td> </td>
<td id="currenttime"></td>
</tr>
</table>
<script src="time.js"></script>
</header>
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a class="active" href="pets.html">Browse Available Pet</a></li>
<li><a href="findanimal.html">Find a dog/cat</a></li>
<li><a href="dogcare.html">Dog Care</a></li>
<li><a href="catcare.html">Cat Care</a></li>
<li><a href="put-for-adoption.html">Have a pet to give away?</a></li>
<li><a href="contactus.html">Contact Us</a></li>
</ul>
</nav>
<div id="pet-display">
<!--All the animals (pictures and informations) were found at https://www.spca.com - this is for a school project-->
<fieldset class="animals">
<div class="content">
<table class="informations">
<tr>
<td>
<img src="images/jacques1.jpg"
alt="jacques, a dog put for adoption on SPCA"
id="animal1">
</td>
<td>
<h1>JACQUES</h1>
<h2>Dog • Mixed Breed </h2>
<p>Young • Male • Gets along with other dogs</p>
<p>Suitable for a family with small children</p>
</td>
</tr>
</table>
</div>
<div class="interested"><button>Interested</button></div>
</fieldset>
<fieldset class="animals">
<div class="content">
<table class="informations">
<tr>
<td>
<img src="images/cody1.jpg"
alt="cody, a dog put for adoption on SPCA"
id="animal2"
onmouseover="show2animal2()"
onmouseout="show1animal2()">
</td>
<td>
<h1>CODY</h1>
<h2>Dog • Mixed Breed </h2>
<p>Young • Male • Gets along with cats and other dogs</p>
<p>Suitable for a family with small children</p>
</td>
</tr>
</table>
</div>
<div class="interested"><button>Interested</button></div>
</fieldset>
<fieldset class="animals">
<div class="content">
<table class="informations">
<tr>
<td>
<img src="images/jello1.jpg"
alt="jello, a cat put for adoption on SPCA"
id="animal3">
</td>
<td>
<h1>JELLO</h1>
<h2>Cat • Domestic Shorthair </h2>
<p>Young • Female • Gets along with other cats</p>
<p>Suitable for a family with small children</p>
</td>
</tr>
</table>
</div>
<div class="interested"><button>Interested</button></div>
</fieldset>
</div>
<script src="pets.js"></script>
<footer>
<a href="statement.html">Privacy/Disclamer Statement</a>
</footer>
</body>
</html>