-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
323 lines (288 loc) · 15.6 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
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
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/css/bootstrap.min.css" integrity="sha384-MCw98/SFnGE8fJT3GXwEOngsV7Zt27NXFoaoApmYm81iuXoPkFOJwJ8ERdknLPMO"
crossorigin="anonymous">
<link href="https://fonts.googleapis.com/css?family=Roboto" rel="stylesheet">
<!-- See if this works. If not, remove https -->
<link rel="stylesheet" type="text/css" href="public/css/styles.css">
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<script src="https://code.jquery.com/jquery-1.11.2.min.js"></script>
<title>RAVN</title>
</head>
<body id="main-body" data-spy="scroll" data-target=".navbar">
<nav class="navbar navbar-expand-lg bg-dark navbar-dark fixed-top">
<a class="navbar-brand" href="#">RAVN</a>
<!--You can put an image here an for RAVN <img>-->
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#myNavbar">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="myNavbar">
<ul class="navbar-nav">
<a class="nav-item nav-link" href="#section1">About Us</a>
<a class="nav-item nav-link" href="#section2">Our Mission</a>
<a class="nav-item nav-link" href="#section3">Pet Profiles</a>
<a class="nav-item nav-link" href="#section4">Contact Us</a>
<li class="nav-item dropdown">
<a class="nav-link dropdown-toggle" href="#" id="navbardrop" data-toggle="dropdown">Donation
</a>
<div class="dropdown-menu">
<a class="dropdown-item" href="donate.html">Direct Donation</a>
<a class="dropdown-item" href="https://www.gofundme.com/tranfunds">Go Fund Me Link</a>
</li>
<!-- need to get this to the right side of the navbar -->
<!-- <ul class="nav"> -->
<a class="nav-item nav-link animaladd" href="addAnimal.html">
<i class="material-icons md-36">plus_one</i> Add Animal</a>
<!-- this where the plus one is -->
<a class="nav-item nav-link notSignedIn" href="signup.html">
<i class="material-icons md-36">person_add</i> Signup</a>
<!-- find the glyphicons that go with these -->
<a class="nav-item nav-link notSignedIn" href="signin.html">
<i class="material-icons md-36">person</i> Login</a>
<a class="nav-item nav-link SignedIn" href="index.html">
<i class="material-icons md-36">person_outline</i> Logout</a>
</ul>
</div>
</nav>
<!-- end of navbar -->
<!-- beginning of BS4 carousel -->
<div class="container-fluid">
<div id="myCarousel" class="carousel slide" data-ride="carousel">
<ol class="carousel-indicators">
<li data-target="#myCarousel" data-slide-to="0" class="active"></li>
<li data-target="#myCarousel" data-slide-to="1"></li>
<li data-target="#myCarousel" data-slide-to="2"></li>
</ol>
<div class="carousel-inner" role="listbox">
<div class="carousel-item active">
<img src='public/images/carousel/dachshund.jpg' class="img-fluid" alt='' />
<div class="carousel-caption d-none d-md-block">
<h1>Rescue Animal Volunteer Network</h1>
<p>Bringing technology to rescue organizations and volunteers like you!</p>
</div>
</div>
<div class="carousel-item">
<img src='public/images/carousel/blackpuppy.jpg' class="img-fluid" alt='' />
<div class="carousel-caption d-none d-md-block">
<h1>Rescue Animal Volunteer Network</h1>
</div>
</div>
<div class="carousel-item">
<img src='public/images/carousel/mountainpup.jpg' class="img-fluid" alt='' />
<div class="carousel-caption d-none d-md-block">
<h1>Rescue Animal Volunteer Network</h1>
</div>
</div>
</div>
<a class="carousel-control-prev" href="#myCarousel" role="button" data-slide="prev">
<span class="carousel-control-prev-icon" aria-hidden="true"></span>
<span class="sr-only">Previous</span>
</a>
<a class="carousel-control-next" href="#myCarousel" role="button" data-slide="next">
<span class="carousel-control-next-icon" aria-hidden="true"></span>
<span class="sr-only">Next</span>
</a>
</div>
</div>
<!-- end of BS4 carousel -->
<!-- section1 -->
<div id="section1"></div>
<div class="container-fluid">
<div class="row">
<div class="col-sm">
<span class="border border-white">
<img class="img-fluid" src='public/images/general-pictures/porch.jpg' alt='' />
</span>
</div>
<div class="col-sm" id="ravn">
<h2 class="text-justify">About Us</h2>
<p class="text-justify">Pronounced /'rāvən'/, the Rescue Animal Volunteer Network is dedicated to
transporting our furry friends
to their new, forever homes. If you would like to volunteer your time to help on a leg of one of
our
animal's journey, please sign up and we'll be happy to get you set up to help a loving animal in
need!</p>
</div>
</div>
</div>
<!-- section2 -->
<div id="section2"></div>
<div class="container-fluid">
<div class="row">
<div class="col-sm" id="claw">
<h2 class="text-justify">Our Mission</h2>
<p class="text-justify">What started out as a mutual love for animals has grown into a passion to link
animal rescue organizations
with the volunteers that help transport animals to a better life.</p>
</div>
<div class="col-sm">
<img class="img-fluid" src='public/images/general-pictures/womanandherdog.jpg' alt='' />
</div>
</div>
</div>
<!-- pet profile section3 -->
<div id="section3"></div>
<div class="container-fluid">
<h2 class="text-center" id="pet_profiles"><i class="material-icons md-36">pets </i> Pet Profiles</h2>
</div>
<div class="card-deck">
<!--you can make this a card-group too to separate the 4 cards-->
<div class="card border-secondary w-25">
<img class="card-img-top" src='public/images/general-pictures/golden.jpg' alt='' />
<div class="card-body">
<h4 class="card-title">Sam</h4>
<p class="card-text">Very sweet and great with kids and other dogs. Great for active family!</p>
</div>
<ul class="list-group list-group-flush">
<li class="list-group-item">Age: 6 mos.</li>
<li class="list-group-item">Breed: Golden Mix</li>
<li class="list-group-item">Weight: 25 lbs.</li>
</ul>
<a href="testMap.html" target="_blank" class="btn btn-primary">Give Me a Ride</a>
</div>
<div class="card border-secondary w-25">
<img class="card-img-top" src='public/images/general-pictures/littlepitmix.jpg' alt='' />
<div class="card-body">
<h4 class="card-title">Rory</h4>
<p class="card-text">Rory is a big strong baby with blue eyes and is great with samll children and
other animals!</p>
</div>
<ul class="list-group list-group-flush">
<li class="list-group-item">Age: 3 yrs.</li>
<li class="list-group-item">Breed: Pit Bull mix</li>
<li class="list-group-item">Weight: 35 lbs.</li>
</ul>
<a href="testMap.html" target="_blank" class="btn btn-primary">Give Me a Ride</a>
</div>
<div class="card border-secondary w-25">
<img class="card-img-top" src='public/images/general-pictures/orangetabby.jpg' alt='' />
<div class="card-body">
<h4 class="card-title">Briana</h4>
<p class="card-text">Brianna is a ball of fire! She loves to romp and have a great time!</p>
</div>
<ul class="list-group list-group-flush">
<li class="list-group-item">Age: 4 mos.</li>
<li class="list-group-item">Breed: Orange Tabby</li>
<li class="list-group-item">Weight: 6 lbs.</li>
</ul>
<a href="testMap.html" target="_blank" class="btn btn-primary">Give Me a Ride</a>
</div>
<div class="card border-secondary w-25">
<img class="card-img-top" src='public/images/general-pictures/beagle.jpg' alt='' />
<div class="card-body">
<h4 class="card-title">Chip'n Dale</h4>
<p class="card-text">This pup loves to play! Sweet disposition!</p>
</div>
<ul class="list-group list-group-flush">
<li class="list-group-item">Age: 7 mos.</li>
<li class="list-group-item">Breed: Beagle mix</li>
<li class="list-group-item">Weight: 17 lbs.</li>
</ul>
<a href="testMap.html" target="_blank" class="btn btn-primary">Give Me a Ride</a>
</div>
</div>
<!-- section4-->
<div id="section4"></div>
<div class="container-fluid">
<div>
<h2 class="text-center" id="contact_us"><i class="material-icons md-36">email</i> Contact Us</h2>
</div>
<div class="row">
<div class="col">
<img src='public/images/general-pictures/shepard.jpg' class="img-fluid" alt='Sherpard' />
</div>
<div class="col">
<div id="section4" class="container-fluid">
<br>
<br>
<section class="contact" id="contact">
<div class="container">
<header class="section-header">
<h2 class="title-text">Keep in touch</h2>
</header>
<div class="contact-block">
<form id="contact-form" method="post" class="contact-form" role="form">
<div class="form-group">
<label class="sr-only" for="name">Full Name</label>
<div class="input-group">
<div class="input-group-addon">
<i class="icon-user"></i>
</div>
<input type="text" class="form-control" id="name" name="name" placeholder="Your full name"
required="required">
</div>
</div>
<div class="form-group">
<label class="sr-only" for="email">Email Address</label>
<div class="input-group">
<div class="input-group-addon">
<i class="icon-email-envelope"></i>
</div>
<input type="email" class="form-control" id="email" name="email"
placeholder="Your email address" required="required">
</div>
</div>
<div class="form-group">
<label class="sr-only" for="phone">Phone Number</label>
<div class="input-group">
<div class="input-group-addon">
<i class="icon-call-phone"></i>
</div>
<input type="tel" class="form-control" id="phone" name="phone" placeholder="Phone number (optional)">
</div>
</div>
<div class="form-group">
<label class="sr-only" for="message">Message</label>
<div class="input-group">
<div class="input-group-addon">
<i class="icon-email-envelope"></i>
</div>
<textarea class="form-control" id="message" name="message" placeholder="Write your message"
rows="4" required="required"></textarea>
</div>
</div>
<div>
<label class="sr-only">Send Email</label>
<button class="btn btn-primary btn-fill">
<i class="icon-paper-plane"></i>
<span class="btn-md">Send Message</span>
</button>
</div>
</form>
</div>
</div>
</section>
</div>
</div>
</div>
</div>
<div class="navbar navbar-inverse navbar-fixed-bottom">
<div class="container-fluid">
<!-- Change this section to state that it was built by AMD with the help of Matt, Barbara, and Melissa. -->
<p class="navbar-text" id="footer">RAVN built and designed by Alex Murray Designs
© 2018</p>
</div>
</div>
<!-- scrollspy -->
<!-- <script>
$(document).ready(function () {
// Add scrollspy to body
$('#main-body').scrollspy({
target: ".navbar",
offset: 50
});
});
</script> -->
<script src="./js/app.js"></script>
<script src="https://code.jquery.com/jquery-3.3.1.slim.min.js" integrity="sha384-q8i/X+965DzO0rT7abK41JStQIAqVgRVzpbzo5smXKp4YfRvH+8abtTE1Pi6jizo"
crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.3/umd/popper.min.js" integrity="sha384-ZMP7rVo3mIykV+2+9J3UJ46jBk0WLaUAdn689aCwoqbBJiSnjAK/l8WvCWPIPm49"
crossorigin="anonymous"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/js/bootstrap.min.js" integrity="sha384-ChfqqxuZUCnJSK3+MXmPNIyE6ZbWh2IMqE241rYiqJxyMiZ6OW/JmZQ5stwEULTy"
crossorigin="anonymous"></script>
</body>
</html>