-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
89 lines (89 loc) · 4.86 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>My Bad Dogs - Home</title>
<link href="css/mybaddogs.css" rel="stylesheet">
<script src="https://use.fontawesome.com/3b8437358f.js"></script>
<link href="https://fonts.googleapis.com/css?family=Fira+Sans+Condensed" rel="stylesheet">
</head>
<body>
<a href="#maincontent">Skip to main content</a>
<header>
<a href="https://www.boredpanda.com/underwater-dogs-seth-casteel/"><img src="images/daschund_in_water.jpg" alt=""></a>
<h1>My Bad Dogs</h1>
<nav>
<ul>
<li><a id="iamhere" href="index.html"><i class="fa fa-paw" aria-hidden="true"></i>Home</a></li>
<li><a href="adoption.html">For Adoption</a></li>
<li><a href="application.html">Application</a></li>
<li><a href="about.html">About Me</a></li>
</ul>
</nav>
</header>
<main id="maincontent">
<div class="wrapper">
<div class="columns">
<h2>Welcome</h2>
<p>Hello and welcome to My Bad Dogs - a website for adopting challenging dogs.</p>
<p>All the <a href="adoption.html">dogs on this site</a> are friendly to humans - at least nice humans, and other dogs - at least nice dogs. I can't say the same for other species. Each has many redeeming characteristics and they are all worthy of love, affection and a wonderful home.</p>
<p>Often times people get rid of their dogs because they weren't aware of the breed behaviors of the dog they got. This leads to frustration and ultimately the dog winding up in a shelter. We pair dogs to owners who have experience and understand the needs of specific breeds.</p>
</div>
<div class="columns">
<h2>The Adoption Process</h2>
<p>The adoption process requires the following steps:</p>
<ul>
<li>Fill out application</li>
<li>Phone Screen</li>
<li>Home Inspection</li>
<li>Dog Meet and Greet</li>
</ul>
<p>Even if you are not seeing a dog you like right now, you are welcome to <a href="application.html">fill out the application</a> to start the approval process. The phone screen typically takes 30-45 minutes. If all goes well, the home inspection requires that you set up an appointment with the local Humane Society to have one of their members inspect your home to ensure that it is safe and suitable for a dog. Note, we don't tell you what we are looking for in the home inspection. Consider it a test.</p>
</div>
<div class="columns">
<h2>Success Rate</h2>
<p>A lot of dogs have found permanent homes, but its not a perfect process.</p>
<table>
<caption>Dogs Saved</caption>
<thead>
<tr>
<th scope="col">Year</th>
<th scope="col">Rescued</th>
<th scope="col">Adopted</th>
<th scope="col">Returned</th>
</tr>
</thead>
<tbody>
<tr>
<th scope="row">2015</th>
<td>18</td>
<td>15</td>
<td>3</td>
</tr>
<tr>
<th scope="row">2016</th>
<td>30</td>
<td>25</td>
<td>5</td>
</tr>
<tr>
<th scope="row">2017</th>
<td>27</td>
<td>25</td>
<td>2</td>
</tr>
</tbody>
</table>
</div>
</div>
</main>
<footer>
<a href="https://www.boredpanda.com/underwater-dogs-seth-casteel/"><img src="images/dog_logo.jpg" aria-hidden="true" alt=""></a>
<p>My Bad Dogs © 2017. All Rights Reserved</p>
<ul>
<li><a href="https://www.aspca.org/"><img src="images/aspca.jpg" alt="A S P C A"></a></li>
<li><a href="https://secure.humanesociety.org/site"><img src="images/humanesociety.jpg" alt="Humane Society"></a></li>
</ul>
</footer>
</body>
</html>