-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.php
124 lines (124 loc) · 4.31 KB
/
index.php
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
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="shortcut icon" href="pic/favicon.ico">
<link rel="shortcut icon" href="pic/ff.ico">
<meta charset="utf-8">
<meta content="IE=edge" http-equiv="X-UA-Compatible">
<meta content="width=device-width, initial-scale=1" name="viewport">
<!-- Important meta tags according to getbootstrap.com -->
<meta content="" name="This is the homepage for Forever Furries Adoption repository">
<meta content="" name="CS361 Project B">
<title>
Forever Furries - Home
</title>
<!-- Bootstrap core CSS -->
<link rel="stylesheet" href="css/bootstrap.css">
<!-- Bootstrap theme -->
<link rel="stylesheet" href="css/bootstrap-theme.css">
</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">
</a>
</div>
<!-- Navigation bar menu items -->
<div id="navbar" class="navbar-collapse collapse">
<ul class="nav navbar-nav">
::before
<li class="active">
<a href="home.html">
Home
</a>
</li>
<li>
<a href="adoptions.php">
Adoptions
</a>
</li>
<li>
<a href="volunteers.html">
Volunteers
</a>
</li>
<li>
<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>
Forever Furries
</h1>
<p>
Welcome to America's #1 dog and cat adoption site. Our mission is to connect great families with amazing pets - and become Forever Furries. To get started, simply click on a picture of an animal below, or select from the menu options above.
</p>
</div>
<!-- Create a header that leads into pet images -->
<div class="page-header">
<h1>
Showcased pets
</h1>
</div>
<!-- Create 10x clickable pet thumbnail images -->
<a href="adoptions.php">
<img class="img-thumbnail" alt="Missing Pet" src="pic/cat1.jpg" style="width: 200; height: 200px;" ></img>
</a>
<a href="adoptions.php">
<img class="img-thumbnail" alt="Missing Pet" src="pic/dog1.jpg" style="width: 200; height: 200;" ></img>
</a>
<a href="adoptions.php">
<img class="img-thumbnail" alt="Missing Pet" src="pic/dog2.jpg" style="width: 200; height: 200;" ></img>
</a>
<a href="adoptions.php">
<img class="img-thumbnail" alt="Missing Pet" src="pic/cat2.jpg" style="width: 200; height: 200;" ></img>
</a>
<a href="adoptions.php">
<img class="img-thumbnail" alt="Missing Pet" src="pic/cat3.jpg" style="width: 200; height: 200;" ></img>
</a>
<a href="adoptions.php">
<img class="img-thumbnail" alt="Missing Pet" src="pic/dog3.jpg" style="width: 200; height: 200;" ></img>
</a>
<a href="adoptions.php">
<img class="img-thumbnail" alt="Missing Pet" src="pic/cat4.jpg" style="width: 200; height: 200;" ></img>
</a>
<a href="adoptions.php">
<img class="img-thumbnail" alt="Missing Pet" src="pic/cat5.jpg" style="width: 200; height: 200;" ></img>
</a>
<a href="adoptions.php">
<img class="img-thumbnail" alt="Missing Pet" src="pic/dog4.jpg" style="width: 200; height: 200;" ></img>
</a>
<a href="adoptions.php">
<img class="img-thumbnail" alt="Missing Pet" src="pic/dog5.jpg" style="width: 200; height: 200;" ></img>
</a>
</div>
</body>
<footer class="footer">
<div class="container">
<br /><br />
<div style="text-align:center">
<img src="pic/footerlogo.gif" height="70" width="150">
<p class="text-muted">©<br /></p>
</div>
<br /><br />
</div>
</footer>
</html>