-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcat-profile.html
More file actions
92 lines (87 loc) · 3.49 KB
/
cat-profile.html
File metadata and controls
92 lines (87 loc) · 3.49 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
87
88
89
90
91
92
<!DOCTYPE html>
<html lang="en">
<head>
<title>Seattle Cat Rentals</title>
<link rel="stylesheet" type="text/css" href="styles/normalize.css">
<link rel="stylesheet" type="text/css" href="styles/base.css">
</head>
<body>
<header class="header">
<span><a class="link" href="book-a-cat.html">Open Right MEOW! Book a cat →</a></span>
<h1>Kitties To Go!</h1>
<h3>Seattle's premiere drive-through cat rentals</h3>
<nav class="main-nav">
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="about.html">About</a></li>
<li><a href="rates.html">Rates</a></li>
<li> <a href="liability-release.html">Liability Release</a></li>
<li><a href="book-a-cat.html">Book a Cat</a></li>
</ul>
</nav>
</header>
<main>
<table>
<tr>
<td>
<b>Cats listed by name:
<a href="cat_profile.htm">A - D</a> |
<a href="cat_profile1.htm">E - H</a> |
<a href="cat_profile2.htm">I - L</a> |
<a href="cat_profile3.htm">M - P</a> |
<a href="cat_profile4.htm">Q - T</a> |
<a href="cat_profile5.htm">U - Z</a>
</b>
</td>
</table>
<table>
<tr>
<td>
<b>(M)</b>Male<br>
<b>(F)</b>Female<br>
<b>(NM)</b>Neutered Male<br>
<b>(SF)</b>Spayed Female<br>
</td>
<td>
<b>(DSH)</b> Domestic Short Hair<br>
<b>(DMH)</b> Domestic Medium Hair<br>
<b>(DLH)</b> Domestic Long Hair<br>
<b>All our cats are litter box traine<br></b>
</td>
</tr>
<tr>
<td>
<a href="images/Siamese_Anzu.jpg" target="_blank"><img alt="Anzu" src="images/Siamese_Anzu.jpg" width="95" height="95"></a>
</td>
<td>
<span class="name"><u> Anzu </u></span><br>
<span class="desc"><b class="cat">Born July 2006 - Siamese - (NM) (DSH)</b><br>
Friendly, cuddly, and calm.</span>
</td>
</tr>
<tr>
<td>
<a href="images/British_Ashwell.jpg" target="_blank"><img alt="Ashwell" src="images/British_Ashwell.jpg" width="95" height="95"></a>
</td>
<td>
<span class="name"><u> Ashwell </u></span><br>
<span class="desc"><b class="cat">Born July 2006 - British Short Hair - (NM) (DSH)</b><br>
Playful, happy.</span>
</td>
</tr>
</table>
</main>
<footer class="footer">
<p>Kitties To Go!</p>
<p>(555)867-5309</p>
<p><a class="link" href="mailto:kittiestogo@catmail.com">kittiestogo@catmail.com</a>
<div>
<p>Please Cat Responsibly</p>
</div>
<div>
<p>Copyright 2017 Kitties To Go!, LLC</p>
<p>Web master: Marjorie Blanco</p>
</div>
</footer>
</body>
</html>