-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsample.html
More file actions
998 lines (771 loc) · 36.4 KB
/
Copy pathsample.html
File metadata and controls
998 lines (771 loc) · 36.4 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
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
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
<!doctype html>
<html>
<head>
<link rel="stylesheet" href="http://code.jquery.com/mobile/1.2.0/jquery.mobile-1.2.0.min.css" />
<script src="http://code.jquery.com/jquery-1.8.2.min.js"></script>
<script src="http://code.jquery.com/mobile/1.2.0/jquery.mobile-1.2.0.min.js"></script>
<style>
a:link{
color:#FFF;
}
a:hover{
color:#FFF;
}
a:visited{
color:#FFF;
}
#us{
position:fixed;
left:700px;
}
</style>
<link rel="stylesheet" href="normalize.css">
<link rel="stylesheet" href="foundation.css">
</head>
<body>
<!--Contact--!>
<div data-role="page" id="contact">
<a href="index.html" data-ajax="false"><img src="http://blog.flamingtext.com/blog/2013/08/12/flamingtext_com_1376337972_1046405373.png" border="0" alt="Logo Design by FlamingText.com" title="Logo Design by FlamingText.com"></a>
<div data-role="content">
<iframe id="JotFormIFrame" sandbox="allow-same-origin allow-scripts" onload="window.parent.scrollTo(0,0)" allowtransparency="true" src="
http://form.jotform.us/form/32234801785151" frameborder="0" style="width:100%; height:740px; border:none;"
scrolling="no"></iframe>
</div><!-- /content -->
</div><!-- /page -->
<!--Foster--!>
<div data-role="page" id="foster">
<a href="index.html" data-ajax="false"><img src="http://blog.flamingtext.com/blog/2013/08/12/flamingtext_com_1376337972_1046405373.png" border="0" alt="Logo Design by FlamingText.com" title="Logo Design by FlamingText.com"></a>
<div data-role="content">
<iframe id="JotFormIFrame" onload="window.parent.scrollTo(0,0)" allowtransparency="true" src="http://form.jotform.co/form/32234791595865" frameborder="0" style="width:100%; height:675px; border:none;" scrolling="no"></iframe>
</div><!-- /content -->
</div><!-- /page -->
<!--About--!>
<div data-role="page" id="about">
<a href="index.html" data-ajax="false"><img src="http://blog.flamingtext.com/blog/2013/08/12/flamingtext_com_1376337972_1046405373.png" border="0" alt="Logo Design by FlamingText.com" title="Logo Design by FlamingText.com"></a>
<div data-role="content">
<h1><b>About</b></h1>
<center><img src="us.jpg.png" id="us" width="400" height="700"></center>
<div><p>These days, many animals are adopted and bought from breeders and animal <br>
shelters. However,a majority of the animals are chosen by their physical features rather <br>
than their personality. Personality is a huge aspect in establishing a relationship<br>
between an animal and their owner. It took me 3 tries to finding Madison, my current <br>
and permanent dog. As an energetic playful person, Madison was the perfect match and <br>
animal for mt living space. She has a backyard to run around and have fun. <br>
She’s inspired me to become an advocate for animal rights. So, I made this animal <br>
matchmaking website, hoping others won’t have to get rid of animals and to promote <br>
adopting over breeding. I hope that other people will find the same joy that I did when I met the <br>
dog that best matches my personality. In addition, I hope that people will stop <br>
“judging a book by its cover” and start looking more on the inside.</p></div>
<div><p>In addition to Cupet, I started @avoiceforanimals1, an animal awareness<br>
Instagram (now expanding to other social media sites). The goal of avoiceforanimals1 <br>
is to show that 1 person can be the voice for animals and I teach others about all <br>
types of animal issues, ranging from signing petitions against the circus to <br>
showing others the horrific practice in the fur industry. Thank you for checking out Cupet!</p></div>
</div><!-- /content -->
</div><!-- /page -->
<!-- Start of quiz page -->
<div data-role="page" id="startquiz">
<a href="index.html" data-ajax="false"><img src="http://blog.flamingtext.com/blog/2013/08/12/flamingtext_com_1376337972_1046405373.png" border="0" alt="Logo Design by FlamingText.com" title="Logo Design by FlamingText.com"></a>
<div>
<p>
Take this quiz to find the perfect pet for you! If there are none, don't worry,
we'll email when we find your perfect pet. Remember, it may take time so don't rush
on choosing an animal. We will NOT be sharing any of this information with anybody.
</p>
</div>
<div>
<a href="#quiz"><button> Click here to start the quiz</button></a>
</div>
<div> <p> Can't keep a pet forever because you travel a lot or some other reason? There's still a way to help
with fostering! Most animal organizations pay for the food and pet's necessities, an average fosters' role is to bring their
pet to adoption events, bring them to vet appointments, and just give them a home! Please
make sure you fill out the first quiz, then use the same email address to fill out the foster form! </p> </div>
<div>
<a href="#quiz"><button> Click here for the foster form </button> </a>
</div>
</div> <!---content---!>
</div>
<!--Quiz page--!>
<div data-role="page" id="quiz">
<a href="index.html" data-ajax="false"><img src="http://blog.flamingtext.com/blog/2013/08/12/flamingtext_com_1376337972_1046405373.png" border="0" alt="Logo Design by FlamingText.com" title="Logo Design by FlamingText.com"></a>
<div data-role="content">
<script type="text/javascript" src="http://form.jotform.us/jsform/32196974969173"></script>
</div>
</div><!-- /page -->
<!--Submit an animal page--!>
<div data-role="page" id="submitanimal">
<a href="index.html" data-ajax="false"><img src="http://blog.flamingtext.com/blog/2013/08/12/flamingtext_com_1376337972_1046405373.png" border="0" alt="Logo Design by FlamingText.com" title="Logo Design by FlamingText.com"></a>
<div data-role="content">
<form action="form.php" method="post">
<h2>Basics</h2>
<label for="text-basic">Name:</label>
<input type="text" name="text-basic" id="text-basic" value="">
<label for="select-choice-1" class="select">Type of Animal</label>
<select name="select-choice-1" id="select-choice-1">
<option value="standard">Dog</option>
<option value="rush">Cat</option>
<option value="express">Small Animal</option>
</select>
<label for="select-choice-1" class="select">Age</label>
<select name="select-choice-1" id="select-choice-1">
<option value="standard">Baby (2 months-1 year)</option>
<option value="rush">Adult (1-7 years)</option>
<option value="express">Senior (7+ years)</option>
</select>
<label>
<input type="radio" name="radio-choice-0" id="radio-choice-0a">Male
</label>
<label for="radio-choice-0b">Female</label>
<input type="radio" name="radio-choice-0" id="radio-choice-0b" class="custom">
<label for="select-choice-1" class="select">Size</label>
<select name="select-choice-1" id="select-choice-1">
<option value="standard">Small</option>
<option value="rush">Medium</option>
<option value="express">Large</option>
</select>
<label for="text-basic">Breed:</label>
<input type="text" name="text-basic" id="text-basic" value="">
<label for="file">Photo:</label>
<input type="file" name="file" id="file" value="">
<h2>Medical</h2>
<label for="textarea">What vaccinations has the animal already received?</label>
<textarea cols="40" rows="8" name="textarea" id="textarea"></textarea>
<label for="textarea">What other vaccinations does the animal NEED to get?</label>
<textarea cols="40" rows="8" name="textarea" id="textarea"></textarea>
<label for="textarea">Does the animal have any allergies/medical issues?</label>
<textarea cols="40" rows="8" name="textarea" id="textarea"></textarea>
<h2>Personality</h2>
<fieldset data-role="controlgroup">
<legend>What personality traits does the pet match with? You can choose more than one!</legend>
<input type="checkbox" name="energetic" id="energetic">
<label for="energetic">Energetic</label>
<input type="checkbox" name="quiet" id="quiet">
<label for="quiet">Quiet</label>
<input type="checkbox" name="mellow" id="mellow">
<label for="mellow">Mellow</label>
<input type="checkbox" name="playful" id="playful">
<label for="playful">playful</label>
<input type="checkbox" name="friendly" id="friendly">
<label for="friendly">Friendly</label>
<input type="checkbox" name="loud" id="loud">
<label for="loud">loud</label>
<input type="checkbox" name="loyal" id="loyal">
<label for="loyal">loyal</label>
<input type="checkbox" name="shy" id="shy">
<label for="shy">shy</label>
<input type="checkbox" name="lazy" id="lazy">
<label for="lazy">lazy</label>
<input type="checkbox" name="obedient" id="obedient ">
<label for="obedient">obedient</label>
<input type="checkbox" name="neat" id="neat">
<label for="neat">neat</label>
</fieldset>
</form>
<fieldset data-role="controlgroup">
<legend>What personality traits does the animal NOT match with? You can choose more than one!</legend>
<input type="checkbox" name="energetic" id="energetic">
<label for="energetic">Energetic</label>
<input type="checkbox" name="quiet" id="quiet">
<label for="quiet">Quiet</label>
<input type="checkbox" name="mellow" id="mellow">
<label for="mellow">Mellow</label>
<input type="checkbox" name="playful" id="playful">
<label for="playful">playful</label>
<input type="checkbox" name="friendly" id="friendly">
<label for="friendly">Friendly</label>
<input type="checkbox" name="loud" id="loud">
<label for="loud">loud</label>
<input type="checkbox" name="loyal" id="loyal">
<label for="loyal">loyal</label>
<input type="checkbox" name="shy" id="shy">
<label for="shy">shy</label>
<input type="checkbox" name="lazy" id="lazy">
<label for="lazy">lazy</label>
<input type="checkbox" name="obedient" id="obedient ">
<label for="obedient">obedient</label>
<input type="checkbox" name="neat" id="neat">
<label for="neat">neat</label>
</fieldset>
</form>
<label for="textarea">Anything else you want to mention regarding the animals personality? Feel free to tell us!</label>
<textarea cols="40" rows="8" name="textarea" id="textarea"></textarea>
<h2> Environment </h2>
<fieldset data-role="controlgroup">
<legend>What type of people does the animal live best with? You can choose more than one!</legend>
<input type="checkbox" name="energetic" id="energetic">
<label for="energetic">children</label>
<input type="checkbox" name="quiet" id="quiet">
<label for="quiet">teenagers</label>
<input type="checkbox" name="mellow" id="mellow">
<label for="mellow">adults</label>
<input type="checkbox" name="playful" id="playful">
<label for="playful">seniors</label>
</fieldset>
</form>
<fieldset data-role="controlgroup">
<legend>What type of people does the animal NOT live best with? You can choose more than one!</legend>
<input type="checkbox" name="energetic" id="energetic">
<label for="energetic">children</label>
<input type="checkbox" name="quiet" id="quiet">
<label for="quiet">teenagers</label>
<input type="checkbox" name="mellow" id="mellow">
<label for="mellow">adults</label>
<input type="checkbox" name="playful" id="playful">
<label for="playful">seniors</label>
</fieldset>
</form>
<label for="textarea">What type of environment is best for the animal?</label>
<textarea cols="40" rows="8" name="textarea" id="textarea"></textarea>
<label for="textarea">Other:</label>
<textarea cols="40" rows="8" name="textarea" id="textarea"></textarea>
</form>
<!--submit button--!>
<div>
<button><a href="">Submit</a></button>
</div>
<!--cancel button--!>
<div>
<a href="home.html"><button>Cancel</button></a>
</div>
</div><!-- /content -->
</div><!-- /page -->
<!-- Animals page -->
<div data-role="page" id="animals">
<a href="index.html" data-ajax="false"><img src="http://blog.flamingtext.com/blog/2013/08/12/flamingtext_com_1376337972_1046405373.png" border="0" alt="Logo Design by FlamingText.com" title="Logo Design by FlamingText.com"></a>
<div data-role="content">
<div>
<a href="#dogs"><button>Dogs</button></a>
</div>
<div>
<a href="#cats"><button> Cats</button></a>
</div>
<div>
<a href="#smallanimals"><button> Small Animals</button></a>
</div>
</div><!-- /content -->
</div><!-- /page -->
<!-- adoptable dogs page -->
<div data-role="page" id="dogs">
<a href="index.html" data-ajax="false"><img src="http://blog.flamingtext.com/blog/2013/08/12/flamingtext_com_1376337972_1046405373.png" border="0" alt="Logo Design by FlamingText.com" title="Logo Design by FlamingText.com"></a>
<div data-role="content">
<ul data-role="listview" data-inset="true">
<li><a href="#mickey">
<img src="mickey.jpg.png">
<h2>Mickey</h2>
<p>SF Animal Care and Control</p></a>
</li>
<li><a href="#flo">
<img src="flo.jpg.png">
<h2>Flo</h2>
<p>SF Animal Care and Control</p></a>
</li>
<li><a href="#tad">
<img src="tad.jpg.png">
<h2>Tad</h2>
<p>Furry Friends Rescue</p></a>
</li>
<li><a href="#nugget">
<img src="nugget.jpg.png">
<h2>Nugget</h2>
<p>SF Animal Care and Control</p></a>
</li>
<li><a href="#stella">
<img src="stella.jpg.png">
<h2>Stella</h2>
<p>Furry Friends Rescue </p></a>
</li>
<li><a href="#jonah">
<img src="jonah.jpg.png">
<h2>Jonah</h2>
<p>SF Animal Care and Control</p></a>
</li>
<li><a href="#titan">
<img src="titan.jpg.png">
<h2>Titan</h2>
<p>Furry Friends Rescue</p></a>
</li>
</ul>
</div><!-- /content -->
</div><!-- /page -->
<!-- Mickey's page -->
<div data-role="page" id="mickey">
<a href="index.html" data-ajax="false"><img src="http://blog.flamingtext.com/blog/2013/08/12/flamingtext_com_1376337972_1046405373.png" border="0" alt="Logo Design by FlamingText.com" title="Logo Design by FlamingText.com"></a>
<div data-role="content">
<h1><center> Mickey </center></h1>
<div><center><img src="mickey.jpg.png"></center></div>
<center>Name: Mickey </center>
<center>ID: A339593 </center>
<center>Went to SF SPCA 7/12/2013</center>
<center>Age: 5 years </center>
<center>Sex: Neutered male </center>
<center>Breed: Chihuahua mix </center>
<center>Date Posted: 6/22/2013</center>
<p><b>Description:</b> Mickey is a sweet little fellow who's still getting used to life here at the shelter.
This lovely lad enjoys going on walks and loves to be near you. Mickey is bright and confident when he's at
ease. A family with older children would be fine for Mickey. </p>
<div>
<a href="#sfacc"><button>SF Animal Control & Care</button></a>
</div>
</div><!-- /content -->
</div><!-- /page -->
<!-- Flo's page -->
<div data-role="page" id="flo">
<a href="index.html" data-ajax="false"><img src="http://blog.flamingtext.com/blog/2013/08/12/flamingtext_com_1376337972_1046405373.png" border="0" alt="Logo Design by FlamingText.com" title="Logo Design by FlamingText.com"></a>
<div data-role="content">
<h1><center> Flo </center></h1>
<div><center><img src="flo.jpg.png"></center></div>
<center><b>Name:</b> Flo </center>
<center><b>ID:</b> A338826 </center>
<center><b>Went to SF SPCA 7/17/2013</b></center>
<center><b>Age:</b> 2 years </center>
<center><b>Sex:</b> Female </center>
<center><b>Breed:</b> Rat Terrier mix </center>
<center><b>Date Posted:</b> 6/22/2013</center>
<p><b>Description:</b> Flo is a busy and bright terrier gal who loves to be on the go!
This big eared cutie is playful and loves toys and walks by your side. At the end of a
long, action-packed day Flo is always up for some quality lap time. A family with older
children would be fine for Flo.</p>
<div>
<a href="#sfacc"><button>SF Animal Control & Care</button></a>
</div>
</div><!-- /content -->
</div><!-- /page -->
<!--Nugget's page--!>
<div data-role="page" id="nugget">
<a href="index.html" data-ajax="false"><img src="http://blog.flamingtext.com/blog/2013/08/12/flamingtext_com_1376337972_1046405373.png" border="0" alt="Logo Design by FlamingText.com" title="Logo Design by FlamingText.com"></a>
<div data-role="content">
<h1><center> Nugget </center></h1>
<div><center><img src="nugget.jpg.png"></center></div>
<center><b>Name:</b> Nugget </center>
<center><b>ID:</b> A339823 </center>
<center><b>Went to SF SPCA 7/17/2013</b></center>
<center><b>Age:</b> 7 months </center>
<center><b>Sex:</b> Male </center>
<center><b>Breed:</b> Dachshund/Terrier mix </center>
<center><b>Date Posted:</b> 6/27/2013</center>
<p><b>Description:</b> This little cutie is a Nugget of pure gold!
Nugget is a peppy and affectionate pup who's friendly and playful;
he loves toys and going for walks with you. Nugget can't wait to go
to reward based puppy classes to learn all kinds of skills and tricks.
A family with older children would be fine for Nugget.</p>
<div>
<a href="#sfacc"><button>SF Animal Control & Care</button></a>
</div>
</div><!-- /content -->
</div><!-- /page -->
<!--Jonah's page--!>
<div data-role="page" id="jonah">
<a href="index.html" data-ajax="false"><img src="http://blog.flamingtext.com/blog/2013/08/12/flamingtext_com_1376337972_1046405373.png" border="0" alt="Logo Design by FlamingText.com" title="Logo Design by FlamingText.com"></a>
<div data-role="content">
<h1><center> Jonah </center></h1>
<div><center><img src="jonah.jpg.png"></center></div>
<center><b>Name:</b> Jonah </center>
<center><b>ID:</b> A340345 </center>
<center><b>Went to SF SPCA 7/14/2013</b></center>
<center><b>Age:</b> 4 months </center>
<center><b>Sex:</b> Male </center>
<center><b>Breed:</b> Pit Bull Terrier </center>
<center><b>Date Posted:</b> 7/6/2013</center>
<p><b>Description:</b> Beautiful boy Jonah is a very friendly, active
and spirited pup with gorgeous green eyes. He loves playing with toys
and exploring the world. This smart pup already knows "sit" and can't
wait to learn more at reward based training classes. Like all puppies,
Jonah is looking for adopters who will provide him with plenty of
time, structure and training. A family with older children would be
fine for Jonah.</p>
<div>
<a href="#sfacc"><button>SF Animal Control & Care</button></a>
</div>
</div><!-- /content -->
</div><!-- /page -->
<!-- adoptable cats page---!>
<div data-role="page" id="cats">
<a href="index.html" data-ajax="false"><img src="http://blog.flamingtext.com/blog/2013/08/12/flamingtext_com_1376337972_1046405373.png" border="0" alt="Logo Design by FlamingText.com" title="Logo Design by FlamingText.com"></a>
<div data-role="content">
<ul data-role="listview" data-inset="true">
<li><a href="#bits">
<img src="bits.jpg.png">
<h2>Bits</h2>
<p>SF Animal Care and Control</p></a>
</li>
<li><a href="#buddy">
<img src="buddy.jpg.png">
<h2>Buddy</h2>
<p>SF Animal Care and Control</p></a>
</li>
<li><a href="#churnish">
<img src="churnish.jpg.png">
<h2>Churnish</h2>
<p>SF Animal Care and Control</p></a>
</li>
<li><a href="#veronica">
<img src="veronica.jpg.png">
<h2>Veronica</h2>
<p>SF Animal Care and Control</p></a>
</li>
</ul>
</div><!-- /content -->
</div><!-- /page -->
<!--Bit's page--!>
<div data-role="page" id="bits">
<a href="index.html" data-ajax="false"><img src="http://blog.flamingtext.com/blog/2013/08/12/flamingtext_com_1376337972_1046405373.png" border="0" alt="Logo Design by FlamingText.com" title="Logo Design by FlamingText.com"></a>
<div data-role="content">
<h1><center> Bits </center></h1>
<div><center><img src="bits.jpg.png"></center></div>
<center><b>Name:</b> Bits </center>
<center><b>ID:</b>A335573 </center>
<center><b>Available: ACC</b></center>
<center><b>Age:</b> 5 years</center>
<center><b>Sex:</b> Neutered Male </center>
<center><b>Breed:</b> Domestic Shorthair </center>
<center><b>Date Posted:</b> 4/14/2013</center>
<p><b>Description:</b> Bits is a big, handsome, energetic fellow.
He has black on white markings that are all his own quite a unique
looking cat. Bits is affectionate and likes to be petted and to roll
to show you his belly. He is a playful guy and is interested in the
world around him, he likes to explore. He has a strong personality
and will probably do best as the only pet in a household and should
not be with small children. Bits is waiting for his forever home, come
meet him today and see if you are the one for him.</p>
<div>
<a href="#sfacc"><button>SF Animal Control & Care</button></a>
</div>
</div><!-- /content -->
</div><!-- /page -->
<!--Buddy page--!>
<div data-role="page" id="buddy">
<a href="index.html" data-ajax="false"><img src="http://blog.flamingtext.com/blog/2013/08/12/flamingtext_com_1376337972_1046405373.png" border="0" alt="Logo Design by FlamingText.com" title="Logo Design by FlamingText.com"></a>
<div data-role="content">
<h1><center> </center></h1>
<div><center><img src="buddy.jpg.png"></center></div>
<center><b>Name:</b>Buddy </center>
<center><b>ID:</b>A338972 </center>
<center><b>Available: ACC</b></center>
<center><b>Age:</b>1 year </center>
<center><b>Sex:</b> neutered male </center>
<center><b>Breed:</b>Tabby/Orange/Domestic Shorthair </center>
<center><b>Date Posted:</b> 6/15/2013</center>
<p><b>Description:</b>This little Buddy needs a buddy. He a very sweet,
handsome young fellow with great coloring and thick stripes who really
just needs come TLC. Buddy is a shy guy and will do best in a quiet
steady home that will allow him the time to adjust and to build confidence
in himself and the world around him. He is rather scared here at the
shelter with all the new sounds and smells. So if you are looking for
a cat that needs some extra love please come quick and see if this is
the Buddy for you.</p>
<div>
<a href="#sfacc"><button>SF Animal Control & Care</button></a>
</div>
</div><!-- /content -->
</div><!-- /page -->
<!--Churnish page--!>
<div data-role="page" id="churnish">
<a href="index.html" data-ajax="false"><img src="http://blog.flamingtext.com/blog/2013/08/12/flamingtext_com_1376337972_1046405373.png" border="0" alt="Logo Design by FlamingText.com" title="Logo Design by FlamingText.com"></a>
<div data-role="content">
<h1><center> </center></h1>
<div><center><img src="churnish.jpg.png"></center></div>
<center><b>Name:</b>Churnish</center>
<center><b>ID:</b>A339140</center>
<center><b>Available: ACC</b></center>
<center><b>Age:</b>7 years</center>
<center><b>Sex:</b>neutered male </center>
<center><b>Breed:</b>Domestic Shorthair </center>
<center><b>Date Posted:</b> 6/29/2013</center>
<p><b>Description:</b>Churnish is a very friendly and fun cat he is
also a really BIG guy. He is rather overweight and will need an adopter
with the time and intent to work with a vet to help Churnish return to
a manageable and comfortable weight. Churnish is at the shelter because his
owner had to be moved to a care facility and could not take Churnish
along. Churnish likes people, he can sometimes get a bit mouthy with
love bites but is a true sweetheart and ready for a loving new home
</p>
<div>
<a href="#sfacc"><button>SF Animal Control & Care</button></a>
</div>
</div><!-- /content -->
</div><!-- /page -->
<!--Veronica's page--!>
<div data-role="page" id="veronica">
<a href="index.html" data-ajax="false"><img src="http://blog.flamingtext.com/blog/2013/08/12/flamingtext_com_1376337972_1046405373.png" border="0" alt="Logo Design by FlamingText.com" title="Logo Design by FlamingText.com"></a>
<div data-role="content">
<h1><center>Veronica</center></h1>
<div><center><img src="veronica.jpg.png"></center></div>
<center><b>Name:</b>Veronica</center>
<center><b>ID:</b>A337933 </center>
<center><b>Available: ACC</b></center>
<center><b>Age:</b>3 years </center>
<center><b>Sex:</b>spayed female </center>
<center><b>Breed:</b> Domestic Shorthair</center>
<center><b>Date Posted:</b> 5/28/2013</center>
<p><b>Description:</b> Veronica is cute in her tuxedo and seems to knows it. She
can be a bit shy at first but warms up quickly to show what a sweet girl she is. She
is at the shelter because her owner has medical issues that keep them from being able
to care for Veronica. She is ready for a new home where she is sure to shine. Come
meet and adopt Veronica and make everyone���s day!</p>
<div>
<a href="#sfacc"><button>SF Animal Control & Care</button></a>
</div>
</div><!-- /content -->
</div><!-- /page -->
<!-- adoptable small animals page---!>
<div data-role="page" id="smallanimals">
<a href="index.html" data-ajax="false"><img src="http://blog.flamingtext.com/blog/2013/08/12/flamingtext_com_1376337972_1046405373.png" border="0" alt="Logo Design by FlamingText.com" title="Logo Design by FlamingText.com"></a>
<div data-role="content">
<ul data-role="listview" data-inset="true">
<li><a href="#trix">
<img src="trix.jpg.png">
<h2>Trix</h2>
<p>SF Animal Care and Control</p></a>
</li>
<li><a href="#geminisamantha">
<img src="geminisamantha.jpg.png">
<h2>Gemini & Samantha</h2>
<p>SF Animal Care and Control</p></a>
</li>
<li><a href="#junebug">
<img src="junebug.jpg.png">
<h2>Junebug</h2>
<p>SF Animal Care and Control</p></a>
</li>
<li><a href="#tika">
<img src="tika.jpg.png">
<h2>Tika</h2>
<p>SF Animal Care and Control</p></a>
</li>
<li><a href="#alfabeta">
<img src="alfabeta.jpg.png">
<h2>Alfa & Beta</h2>
<p>SF Animal Care and Control</p></a>
</li>
<li><a href="#matildamichelle">
<img src="matildamichelle.jpg.png">
<h2>Matilda & Michelle</h2>
<p>SF Animal Care and Control</p></a>
</li>
</ul>
</div><!-- /content -->
</div><!-- /page -->
<!--Trix's page--!>
<div data-role="page" id="trix">
<a href="index.html" data-ajax="false"><img src="http://blog.flamingtext.com/blog/2013/08/12/flamingtext_com_1376337972_1046405373.png" border="0" alt="Logo Design by FlamingText.com" title="Logo Design by FlamingText.com"></a>
<div data-role="content">
<h1><center>Trix</center></h1>
<div><center><img src="trix.jpg.png"></center></div>
<center><b>Name:</b>Trix</center>
<center><b>ID:</b>A337732 </center>
<center><b>Available: ACC</b></center>
<center><b>Age:</b>1.5 years </center>
<center><b>Sex:</b>female </center>
<center><b>Breed:</b> Rabbit</center>
<center><b>Date Posted:</b> 5/25/2013</center>
<p><b>Description:</b> Trix is a bright-eyed and very active bunny. She is curious,
friendly, and very playful. Trix was a stray that was lucky to be found in Glen
Canyon Park and was brought to the shelter. Trix is ready for her forever home.
Come meet this great bunny today and see if this Trix is for you!</p>
<div>
<a href="#sfacc"><button>SF Animal Control & Care</button></a>
</div>
</div><!-- /content -->
</div><!-- /page -->
<!--Gemini & Samantha's page--!>
<div data-role="page" id="geminisamantha">
<a href="index.html" data-ajax="false"><img src="http://blog.flamingtext.com/blog/2013/08/12/flamingtext_com_1376337972_1046405373.png" border="0" alt="Logo Design by FlamingText.com" title="Logo Design by FlamingText.com"></a>
<div data-role="content">
<h1><center>Gemini & Samantha</center></h1>
<div><center><img src="geminisamantha.jpg.png"></center></div>
<center><b>Name:</b>Gemini & Samantha</center>
<center><b>ID:</b>A338850 & A339629 </center>
<center><b>Available: ACC</b></center>
<center><b>See <a href="www.Mickacoo.org">Mickacoo</a> for information and more adoptable King Pigeons</b></center>
<center><b>Age:</b>Adult </center>
<center><b>Sex:</b>Unknown </center>
<center><b>Breed:</b>King Pigeon</center>
<center><b>Date Posted:</b> 7/3/2013</center>
<p><b>Description:</b>King Pigeons make great pets and companion birds. They are sweet,
smart, calm, and full of personality. But people are not very aware of them as being
pets and they have a hard time finding a home. Kings are domestic pigeons that are bred
to be eaten, but they sometimes escape or are set "free". They do not survive long on
their own. The lucky ones end up in shelters, though they often wait for a long time
before finding a home. Come in and see Gemini & Samantha at the shelter and see if
these are the feathered companions you have been waiting to adopt. </p>
<div>
<a href="#sfacc"><button>SF Animal Control & Care</button></a>
</div>
</div><!-- /content -->
</div><!-- /page -->
<!--Junebug's page--!>
<div data-role="page" id="junebug">
<a href="index.html" data-ajax="false"><img src="http://blog.flamingtext.com/blog/2013/08/12/flamingtext_com_1376337972_1046405373.png" border="0" alt="Logo Design by FlamingText.com" title="Logo Design by FlamingText.com"></a>
<div data-role="content">
<h1><center>Junebug</center></h1>
<div><center><img src="junebug.jpg.png"></center></div>
<center><b>Name:</b>Junebug</center>
<center><b>ID:</b>A339664 </center>
<center><b>Available: ACC</b></center>
<center><b>Age:</b>Adult </center>
<center><b>Sex:</b>Female </center>
<center><b>Breed:</b>Lop-ear/Mix</center>
<center><b>Date Posted:</b> 7/3/2013</center>
<p><b>Description:</b>Meet Junebug. She is a curious and playful girl. She is also
sweet and friendly. And did adorable get mentioned? Junebug was found in very busy
part of the city and is ready for a secure and happy forever home. Come meet this
great rabbit today and see if she is the bun for you. </p>
<div>
<a href="#sfacc"><button>SF Animal Control & Care</button></a>
</div>
</div><!-- /content -->
</div><!-- /page -->
<!--alfa&beta's page---!>
<div data-role="page" id="alfabeta">
<a href="index.html" data-ajax="false"><img src="http://blog.flamingtext.com/blog/2013/08/12/flamingtext_com_1376337972_1046405373.png" border="0" alt="Logo Design by FlamingText.com" title="Logo Design by FlamingText.com"></a>
<div data-role="content">
<h1><center>Alfa & Beta</center></h1>
<div><center><img src="alfabeta.jpg.png"></center></div>
<center><b>Name:</b>Alfa & Beta</center>
<center><b>ID:</b>A339394 & A339395 </center>
<center><b>Available: ACC</b></center>
<center><b>Age:</b>6 months </center>
<center><b>Sex:</b>Both male </center>
<center><b>Breed:</b>Domestic Mouse</center>
<center><b>Date Posted:</b> 7/3/2013</center>
<p><b>Description:</b>Alfa and Beta are sweet, friendly and adorable little domestic
mice who need a new home. They were owner surrendered when a house mate decided they
did not want to share their home with rodents. These 2 boy mice like to be handled are
will make great small pets. Come meet and adopt them today. </p>
<div>
<a href="#sfacc"><button>SF Animal Control & Care</button></a>
</div>
</div><!-- /content -->
</div><!-- /page ---!>
<!--Tika's page--!>
<div data-role="page" id="tika">
<a href="index.html" data-ajax="false"><img src="http://blog.flamingtext.com/blog/2013/08/12/flamingtext_com_1376337972_1046405373.png" border="0" alt="Logo Design by FlamingText.com" title="Logo Design by FlamingText.com"></a>
<div data-role="content">
<h1><center>Tika</center></h1>
<div><center><img src="tika.jpg.png"></center></div>
<center><b>Name:</b>Tika</center>
<center><b>ID:</b>A339553 </center>
<center><b>Available: ACC</b></center>
<center><b>Age:</b>Adult </center>
<center><b>Sex:</b>Female </center>
<center><b>Breed:</b>Rabbit</center>
<center><b>Date Posted:</b> 7/3/2013</center>
<p><b>Description:</b> Tika was seen out and about in the Excelsior district of SF
for over a month before she was caught and brought in to the shelter. She is a domestic
rabbit that will do best with a rabbit experienced owner. She is getting more and
more social and friendly as she get visits from the great volunteers here at the
shelter. She is a beautiful rabbit with her chocolate colored nose and ears. Come
meet her today. </p>
<div>
<a href="#sfacc"><button>SF Animal Control & Care</button></a>
</div>
</div><!-- /content -->
</div><!-- /page -->
<!--Matilda & Michelle's page--!>
<div data-role="page" id="matildamichelle">
<a href="index.html" data-ajax="false"><img src="http://blog.flamingtext.com/blog/2013/08/12/flamingtext_com_1376337972_1046405373.png" border="0" alt="Logo Design by FlamingText.com" title="Logo Design by FlamingText.com"></a>
<div data-role="content">
<h1><center>Matilda & Michelle</center></h1>
<div><center><img src="matildamichelle.jpg.png"></center></div>
<center><b>Name:</b>Matilda & Michelle</center>
<center><b>ID:</b>A339714 & A339715 </center>
<center><b>Available: ACC</b></center>
<center><b>Age:</b> adult </center>
<center><b>Sex:</b>female </center>
<center><b>Breed:</b> chicken</center>
<center><b>Date Posted:</b> 5/25/2013</center>
<p><b>Description:</b> They are very people friendly and seem to be quite bonded to each other. It
would be wonderful if they could be adopted together. Come meet these sweet hens today and see if
they are the ones for you. Up-to-date with routine shots ��� Primary colors: Black, White</p>
<div>
<a href="#sfacc"><button>SF Animal Control & Care</button></a>
</div>
</div><!-- /content -->
</div><!-- /page -->
<!-- animal shelters page -->
<div data-role="page" id="animalshelters">
<a href="index.html" data-ajax="false"><img src="http://blog.flamingtext.com/blog/2013/08/12/flamingtext_com_1376337972_1046405373.png" border="0" alt="Logo Design by FlamingText.com" title="Logo Design by FlamingText.com"></a>
<div data-role="content">
<ul data-role="listview" data-inset="true">
<li><a href="#sfacc">
<img src="sfacc.jpg.png">
<h2>San Francisco Animal Care & Control</h2>
<p>San Francisco</p></a>
</li>
<li><a href="#sfspca">
<img src="sfspca.jpg.png">
<h2>San Francisco SPCA</h2>
<p>San Francisco, CA </p></a>
</li>
<li><a href="#ffr">
<img src="ffr.jpg.png">
<h2>Furry Friends Rescue</h2>
<p>Mountain View, CA</p></a>
</li>
</ul>
</div><!-- /content -->
</div><!-- /page -->
<!-- SFACC's page---!>
<div data-role="page" id="sfacc">
<a href="index.html" data-ajax="false"><img src="http://blog.flamingtext.com/blog/2013/08/12/flamingtext_com_1376337972_1046405373.png" border="0" alt="Logo Design by FlamingText.com" title="Logo Design by FlamingText.com"></a>
<div data-role="content">
<h1><center>SF Animal Care & Control</center></h1>
<div><center><img src="sfacc.jpg.png"></center></div>
<div><center><b><p>Hours:</b><br></center>
<center>Sun & Monday: CLOSED <br></center>
<center>Tuesday, Thursday-Saturday: 11:00 am-6:00 pm<br></center>
<center>Wednesday: 11:00 am-7:00 pm</p></center></div>
<center><div><b><p>Address:</b><br></center>
<center>Animal Care & Control<br></center>
<center>1200 15th Street<br></center>
<center>San Francisco, CA 94103</center></p></div>
<center><div><b>Websites:</b> <a href="www.animalshelter.sfgov.org"> here </a> or <a href="
www.sfgov.org/acc"> here </a></div></center>
<center><div><address>
<a href="mailto:ACC@sfgov.org">Email</a>
</address></div></center>
<center><div><p><b>Phone number:</b>(415) 554-6364</p></div></center>
</div><!-- /content -->
</div><!-- /page -->
<!-- SFSPCA page---!>
<div data-role="page" id="sfspca">
<a href="index.html" data-ajax="false"><img src="http://blog.flamingtext.com/blog/2013/08/12/flamingtext_com_1376337972_1046405373.png" border="0" alt="Logo Design by FlamingText.com" title="Logo Design by FlamingText.com"></a>
<div data-role="content">
<h1><center>San Francisco SPCA</center></h1>
<div><center><img src="sfspca.jpg.png"></center></div>
<div><center><b><p>Hours:</b><br></center>
<center>Monday-Friday, 1:00 p.m.-7:00 p.m. <br></center>
<center>Saturday-Sunday, 10:00 a.m.-6:00 p.m.<br></center></div>
<center><div><b><p>Address:</b><br></center>
<center>SF SPCA Pet Adoption Center<br></center>
<center>250 Florida Street<br></center>
<center>San Francisco, CA 94103</center></p></div>
<center><div><b>Websites:</b> <a href="sfspca.org"> here </a></div></center>
<center><div><address>
<a href="mailto:webmaster@sfspca.org">Email</a>
</address></div></center>
<center><div><p><b>Phone number:</b>(415)-522-3500</p></div></center>
</div><!-- /content -->
</div><!-- /page -->
<!--Furry Friends Rescue page---!>
<div data-role="page" id="ffr">
<a href="index.html" data-ajax="false"><img src="http://blog.flamingtext.com/blog/2013/08/12/flamingtext_com_1376337972_1046405373.png" border="0" alt="Logo Design by FlamingText.com" title="Logo Design by FlamingText.com"></a>
<div data-role="content">
<h1><center>Furry Friends Rescue</h1>
<div><center><img src="ffr.jpg.png"></center></div>
<div><center><b><p>Hours:</b><br></center>
<center>No hours, visit adoption events at pet stores!<br></center>
<center>Look at website for more information!<br></center></div>
<center><div><b><p>Address:</b><br></center>
<center>Furry Friends Mail<br></center>
<center>P.O. Box 7270,<br></center>
<center>Fremont, Ca 94537-7270</center></p></div>
<center><div><b>Websites:</b> <a href="www.furryfriendsrescue.org"> here </a></div></center>
<center><div><address>
<a href="mailto:info@furryfriendsrescue.org">Email</a>
</address></div></center>
<center><div><p><b>Phone number:</b>(510)794-4703</p></div></center>
</div><!-- /content -->
</div><!-- /page -->
</body>
</html>