-
Notifications
You must be signed in to change notification settings - Fork 2
/
donations.html
86 lines (86 loc) · 2.71 KB
/
donations.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
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="shortcut icon" href="pic/favicon.ico">
<meta charset="utf-8"></meta>
<meta content="IE=edge" http-equiv="X-UA-Compatible"></meta>
<meta content="width=device-width, initial-scale=1" name="viewport"></meta>
<!-- Important meta tags according to getbootstrap.com -->
<meta content="" name="This is the donations page for Forever Furries Adoption repository"></meta>
<meta content="" name="CS361 Project B"></meta>
<title>
Forever Furries - Donations
</title>
<!-- Bootstrap core CSS -->
<link rel="stylesheet" href="css/bootstrap.css"></link>
<!-- Bootstrap theme -->
<link rel="stylesheet" href="css/bootstrap-theme.css"></link>
</head>
<body role="document">
<!-- jQuery (necessary for Bootstrap's JavaScript plugins) -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.2/jquery.min.js"></script>
<!-- Include all compiled plugins (below), or include individual files as needed -->
<script src="js/bootstrap.min.js"></script>
<!-- Fixed navbar -->
<nav class="navbar navbar-inverse navbar-fixed-top">
<!-- Container for the navigation bar items -->
<div class="container">
<div class="navbar-header">
<!-- Upper left page name button -->
<a class="navbar-brand" href="home.html">
<img src="pic/foreverfurries.gif" height="25px" widht="150px"></img>
</a>
</div>
<!-- Navigation bar menu items -->
<div id="navbar" class="navbar-collapse collapse">
<ul class="nav navbar-nav">
::before
<li>
<a href="home.html">
Home
</a>
</li>
<li>
<a href="adoptions.php">
Adoptions
</a>
</li>
<li>
<a href="volunteers.html">
Volunteers
</a>
</li>
<li class="active">
<a href="donations.html">
Donations
</a>
</li>
</ul>
</div>
<!-- /.nav-collapse -->
</div>
</nav>
<br><br><br><br> <!-- Properly aligns the showcase container -->
<div class="container theme-showcase" role="main">
<!-- This class creates a gray block for large text on the page -->
<div class="jumbotron">
<h1>
Shelter Donations
</h1>
<p>
Your local shelter is able to provide top care to their pets thanks to grants and generous donations from the local community. Give back to the shelters that supply your community with animals using the web form below.
</p>
</div>
</div>
</body>
<footer class="footer">
<div class="container">
<br /><br />
<div style="text-align:center">
<img src="pic/footerlogo.gif" height="70" width="150"></img>
<p class="text-muted">©<br /></p>
</div>
<br /><br />
</div>
</footer>
</html>