-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
executable file
·898 lines (656 loc) · 39.3 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width,initial-scale=1.0,maximum-scale=1" />
<title>PetFolio: Your pet's digital identity</title>
<!-- Favicon -->
<link rel="shortcut icon" href="lib/images/favicon.png">
<meta name="description" content="">
<meta name="author" content="">
<!-- 1140px Grid styles for IE -->
<!--[if lte IE 9]><link rel="stylesheet" href="lib/css/ie.css" type="text/css" media="screen" /><![endif]-->
<!-- CSS concatenated and minified via ant build script-->
<link rel="stylesheet" href="lib/css/style.css">
<link rel="stylesheet" href="lib/css/fonts.css">
<link rel="stylesheet" href="lib/css/ie.css">
<link rel="stylesheet" href="lib/css/animate.css">
<link rel="stylesheet" href="lib/css/layerslider.css">
<link rel="stylesheet" href="lib/css/owl.carousel.css">
<link rel="stylesheet" href="lib/css/owl.theme.css">
<link rel="stylesheet" href="lib/js/prettyPhoto/css/prettyPhoto.css">
<link href='http://fonts.googleapis.com/css?family=Pacifico' rel='stylesheet' type='text/css'>
<link href='http://fonts.googleapis.com/css?family=Lato:100,300,400,700,300italic,400italic' rel='stylesheet' type='text/css'>
<!-- end CSS-->
<script src="lib/js/jquery-1.11.1.min.js"></script>
<script src="lib/js/jquery-migrate-1.2.1.js"></script>
</head>
<body>
<!--begin container -->
<div id="container">
<!--begin header_wrapper -->
<header id="header_wrapper">
<!--begin header -->
<div id="header" class="clearfix">
<!--begin row -->
<div class="row">
<!--begin logo -->
<img src="https://github.com/WomenInBlockchain2018/petfolio_lp/blob/master/lib/images/petfolio_logo.png?raw=true" style="height: 50px; position: absolute;">
<!--end logo -->
<!--begin nav -->
<nav id="navigation" role="navigation">
<ul id="nav">
<li>
<a href="#container">Home</a>
</li>
<li>
<a href="#features">Features</a>
</li>
<li>
<a href="#testimonials">Testimonials</a>
</li>
<li>
<a href="#showcase">Prototype</a>
</li>
<li class="last">
<a href="#support">Support Our Team</a>
</li>
</ul>
</nav>
<!--end nav -->
</div>
<!--end row -->
</div>
<!--end header -->
</header>
<!--end header_wrapper -->
<!--begin slider-wrapper -->
<section id="slider-wrapper">
<!--begin layerslider -->
<div id="layerslider" style="width:1140px;height:580px;max-width: 1140px; margin:0 auto;">
<!--begin ls-slide -->
<div class="ls-slide" data-ls="slidedelay:8000;transition2d:21,105;timeshift:-1000;">
<img class="ls-l" style="top:80px;left:50%;white-space: nowrap;" data-ls="durationin:1500;scalexin:0.8;scaleyin:0.8;scalexout:0.8;scaleyout:0.8;" src="lib/images/iphone.png" alt="">
<h2 class="ls-l" style="top:90px;left:0px;font-weight: 300; height:42px;font-size:42px;line-height:42px;color:#fff;white-space: nowrap;" data-ls="offsetxin:-50;durationin:2000;delayin:1000;offsetxout:-50;durationout:1000;">
Passport for Your Pet
</h2>
<p class="ls-l" style="top:155px;left:0;font-weight: 300;font-size:22px; line-height:32px;color:#ebf8fc;white-space: nowrap;" data-ls="offsetxin:50;delayin:2000;skewxin:-60;offsetxout:-50;durationout:1000;skewxout:-60;">
Your pet’s medical history<br>
on the blockchain <br>
so you can access it anywhere.
</p>
<a href="#support" class="ls-l" style="top:280px; left:0;" data-ls="offsetxin:0;durationin:2500;delayin:3250;easingin:easeOutElastic;rotatexin:90;transformoriginin:50% top 0;offsetxout:0;durationout:1000;rotatexout:90;transformoriginout:50% bottom 0;">
<span style="background-color: #fff; color:#454545; display:inline-block;font-weight:400; font-size:15px; line-height:15px; vertical-align:top; padding:13px 20px 11px 20px;margin:0 0 20px 0;-webkit-border-radius: 3px 3px;-moz-border-radius: 3px 3px;border-radius: 3px 3px;white-space: nowrap;">
<!-- <i class="icon icon-apple"></i> --> Sign Up for Early Access
</span>
</a>
</div>
<!--end ls-slide -->
<!-- <!--begin ls-slide -->
<!-- <div class="ls-slide" data-ls="slidedelay:8000;transition2d:21,105;timeshift:-1000;">
<img class="ls-l" style="top:120px;left:40%;white-space: nowrap;" data-ls="durationin:1500; delayin:900; scalexin:0.8; scaleyin:0.8; scalexout:0.8; scaleyout:0.8;" src="lib/images/ls4.png" alt="">
<img class="ls-l" style="top:180px;left:25%;white-space: nowrap;" data-ls="durationin:1500; scalexin:0.8; scaleyin:0.8; scalexout:0.8; scaleyout:0.8;" src="lib/images/ls1.png" alt="">
<img class="ls-l" style="top:320px;left:8%;white-space: nowrap;" data-ls="offsetxin:0; offsetyin:100; durationin:2000; delayin:300; offsetxout:-100; offsetyout:50; durationout:2000;" src="lib/images/ls2.png" alt="">
<img class="ls-l" style="top:240px;left:40%;white-space: nowrap;" data-ls="offsetxin:0; durationin:1500; delayin:600; rotateyin:90; transformoriginin:right 50% 0; offsetxout:0; durationout:1500; rotateyout:-90; transformoriginout:right 50% 0;" src="lib/images/ls3.png" alt="">
<img class="ls-l" style="top:82px;left:47%;white-space: nowrap;" data-ls="durationin:1500; delayin:1200; scalexin:0.8; scaleyin:0.8; scalexout:0.8; scaleyout:0.8;" src="lib/images/ls5.png" alt="">
<img class="ls-l" style="top:82px;left:42%;white-space: nowrap;" data-ls="durationin:1500; delayin:1500; scalexin:0.8; scaleyin:0.8; scalexout:0.8; scaleyout:0.8;" src="lib/images/ls6.png" alt="">
<img class="ls-l" style="top:75px;left:20%;white-space: nowrap;" data-ls="durationin:1500; delayin:1800; scalexin:0.8; scaleyin:0.8; scalexout:0.8; scaleyout:0.8;" src="lib/images/ls7.png" alt="">
<p class="ls-l" style="top:70px;left:715px;opacity: .3; font-weight: 300;font-size:150px;color:#ffffff;white-space: nowrap;" data-ls="offsetxin:0;durationin:2000;delayin:3500;easingin:linear;scalexin:0;scaleyin:0;offsetxout:0;durationout:2000;showuntil:1;easingout:linear;scalexout:2;scaleyout:2;">
&
</p>
<h1 class="ls-l" style="top:125px;left:635px;font-weight: 300;font-size:38px;line-height:40px;color:#ffffff;white-space: nowrap;" data-ls="offsetxin:50;durationin:3000;delayin:2300;rotateyin:60;transformoriginin:right 50% 0;offsetxout:-50;durationout:3000;rotateyout:-60;transformoriginout:left 50% 0;">RESPONSIVE DESIGN</h1>
<h2 class="ls-l" style="top:170px;left:635px;font-weight: 500;font-size:30px;color:#286e89;white-space: nowrap;" data-ls="offsetxin:-50;durationin:3000;delayin:2800;rotateyin:-60;transformoriginin:left 50% 0;offsetxout:50;durationout:3000;rotateyout:60;transformoriginout:right 50% 0;">mobile ready template</h2>
<p class="ls-l" style="top:230px;left:635px;font-weight: 300;font-size:22px; line-height:32px;color:#ebf8fc;white-space: nowrap;" data-ls="offsetxin:50;delayin:4000;skewxin:-60;offsetxout:-50;durationout:1000;skewxout:-60;">
Design and style should work toward making you look<br>
good and feel good - without a lot of efforts - so you<br>
can get on with the things that matter.
</p>
<img class="ls-l" style="top:365px;left:635px;opacity: .75;width:60px;white-space: nowrap;" data-ls="offsetxin:-50;delayin:4500;rotatein:90;scalexin:3;scaleyin:3;transformoriginin:25% 25% 0;offsetxout:-50;rotateout:90;scalexout:0.5;scaleyout:0.5;" src="lib/images/feature-android.png" alt="">
<img class="ls-l" style="top:365px;left:715px;opacity: .75;width:60px;white-space: nowrap;" data-ls="offsetxin:-50;delayin:4700;rotatein:90;scalexin:3;scaleyin:3;transformoriginin:25% 25% 0;offsetxout:-50;rotateout:90;scalexout:0.5;scaleyout:0.5;" src="lib/images/feature-ios.png" alt="">
<img class="ls-l" style="top:365px;left:795px;opacity: .75;width:60px;white-space: nowrap;" data-ls="offsetxin:-50;delayin:4900;rotatein:90;scalexin:3;scaleyin:3;transformoriginin:25% 25% 0;offsetxout:-50;rotateout:90;scalexout:0.5;scaleyout:0.5;" src="lib/images/feature-performance.png" alt="">
<img class="ls-l" style="top:365px;left:875px;opacity: .75;width:60px;white-space: nowrap;" data-ls="offsetxin:-50;delayin:5100;rotatein:90;scalexin:3;scaleyin:3;transformoriginin:25% 25% 0;offsetxout:-50;rotateout:90;scalexout:0.5;scaleyout:0.5;" src="lib/images/feature-layers.png" alt="">
<img class="ls-l" style="top:365px;left:955px;opacity: .75;width:60px;white-space: nowrap;" data-ls="offsetxin:-50;delayin:5300;rotatein:90;scalexin:3;scaleyin:3;transformoriginin:25% 25% 0;offsetxout:-50;rotateout:90;scalexout:0.5;scaleyout:0.5;" src="lib/images/feature-html5.png" alt="">
</div> --> --> -->
<!--end ls-slide --> -->
</div>
<!--end layerslider -->
</section>
<!--end slider-wrapper -->
<!--begin services -->
<section id="features">
<!--begin call_to_action_white_wrapper -->
<div class="call_to_action_white_wrapper">
<!--begin call_to_action_white -->
<div class="call_to_action_white">
<h3 class="left_fade">Your pet's digital identity.</h3>
<div class="separator_wrapper bounce_fade">
<div class="separator_first_circle">
<div class="separator_second_circle">
</div>
</div>
</div>
<h4 class="right_fade">Built on the blockchain, Petfolio is a universal ID that holds your pet's entire life story. </h4>
</div>
<!--end call_to_action_white -->
</div>
<!--end call_to_action_white_wrapper -->
<!--begin section_wrapper -->
<div class="section_wrapper">
<!--begin section_box -->
<div class="section_box">
<!--begin row -->
<div class="row">
<!--begin twelvecol -->
<div class="twelvecol">
<!--begin fourcol -->
<div class="fourcol services_item align_center left_fade">
<!--begin zoom_photo -->
<!-- <div class="zoom_photo">
<div class="view view-first">
<a href="http://placehold.it/800x755" class="prettyPhoto[gallery2]">
<img src="http://placehold.it/800x755" alt="pic">
<span class="mask">
<span class="zoom"></span>
</span>
</a>
</div>
</div> -->
<!--end zoom_photo -->
<!--begin services_box -->
<div class="services_box">
<h3><a href="#">Health Records</a></h3>
<p>We store your pet’s identity, health info and life history securely on the blockchain, so it's yours to take everywhere: check in quickly to boarding houses, pet classes, and onto the plane.</p>
<!-- <a href="#" class="button_blue">Discover More</a> -->
</div>
<!--end services_box -->
</div>
<!--end fourcol -->
<!--begin fourcol -->
<div class="fourcol services_item align_center up_fade">
<!--begin zoom_photo -->
<!-- <div class="zoom_photo">
<div class="view view-first">
<a href="http://placehold.it/800x755" class="prettyPhoto[gallery2]" title="Lorem ipsum dolor">
<img src="http://placehold.it/800x755" alt="pic">
<span class="mask">
<span class="zoom"></span>
</span>
</a>
</div>
</div> -->
<!--end zoom_photo -->
<!--begin services_box -->
<div class="services_box">
<h3><a href="#">Adoption</a></h3>
<p>With full access to a pet's history, animal shelters can better care for rescued animals, recommend adoptions, and transfer records between vets and service providers. </p>
<!-- <a href="#" class="button_blue">Discover More</a> -->
</div>
<!--end services_box -->
</div>
<!--end fourcol -->
<!--begin fourcol -->
<div class="fourcol services_item last align_center right_fade">
<!--begin zoom_photo -->
<!-- <div class="zoom_photo">
<div class="view view-first">
<a href="http://placehold.it/800x755" class="prettyPhoto[gallery2]" title="Lorem ipsum dolor">
<img src="http://placehold.it/800x755" alt="pic">
<span class="mask">
<span class="zoom"></span>
</span>
</a>
</div>
</div> -->
<!--end zoom_photo -->
<!--begin services_box -->
<div class="services_box">
<h3><a href="#">Care Network</a></h3>
<p>Connect with your pet's previous owners. Find out about its family history, breed characteristics, and preventative health recommendations. Create a network of care for your pet.</p>
<!-- <a href="#" class="button_blue">Discover More</a> -->
</div>
<!--end services_box -->
</div>
<!--end fourcol -->
</div>
<!--end twelvecol -->
</div>
<!--end row -->
</div>
<!--end section_box -->
</div>
<!--end section_wrapper -->
</section>
<!--end services -->
<section id="testimonials">
<!--begin testimonials_wrapper -->
<div class="testimonials_wrapper">
<!--begin testimonials_box -->
<div class="testimonials_box">
<ul class="rslides" id="slider4">
<li>
<!--begin row -->
<div class="row">
<!--begin twelvecol -->
<div class="twelvecol">
<!--begin fivecol -->
<div class="fivecol">
<!--begin testimonials_info -->
<div class="testimonials_info">
<!-- <img src="http://placehold.it/200x200" alt="John Doe" class="testimonials_picture"> -->
<p class="testimonials_name">Eric<br><span>Greenwich Village Animal Hospital, NYC</span></p>
</div>
<!--end testimonials_info -->
</div>
<!--end fivecol -->
<!--begin sevencol -->
<div class="sevencol last">
<!--begin testimonials_text -->
<p class="testimonials_text" style="font-size: 16px;">"This is a really cool idea - information exchange is a huge part of our business, it happens multiple times a day, and if there was a way we could enter information securely so that labs, specialists, hospitals, other vets, and pet parents could access the information, it would really improve our current system of manually responding to individual requests through email, fax, and outdated software that doesn’t allow communication among all of those entities.”</p>
<!--end testimonials_text -->
</div>
<!--end sevencol -->
</div>
<!--end twelvecol -->
</div>
<!--end row -->
</li>
<li>
<!--begin row -->
<div class="row">
<!--begin twelvecol -->
<div class="twelvecol">
<!--begin fivecol -->
<div class="fivecol">
<!--begin testimonials_info -->
<div class="testimonials_info">
<!-- <img src="http://placehold.it/200x200" alt="John Doe" class="testimonials_picture"> -->
<p class="testimonials_name">Dr. Estie Arkin<br><span>Last Chance Animal Rescue, Long Island</span></p>
</div>
<!--end testimonials_info -->
</div>
<!--end fivecol -->
<!--begin sevencol -->
<div class="sevencol last">
<!--begin testimonials_text -->
<p class="testimonials_text" style="font-size: 18px;">"I have fostered hundreds of dogs that come from all over the United States. When I take home a rescued dog, I wonder: how old is this dog? What is the breed? Where is it from? ...Access to these medical records would be so helpful. Vets and rescue organizations would love it...It would help us take better care of a lot of animals.
"</p>
<!--end testimonials_text -->
</div>
<!--end sevencol -->
</div>
<!--end twelvecol -->
</div>
<!--end row -->
</li>
<li>
<!--begin row -->
<div class="row">
<!--begin twelvecol -->
<div class="twelvecol">
<!--begin fivecol -->
<div class="fivecol">
<!--begin testimonials_info -->
<div class="testimonials_info">
<!-- <img src="http://placehold.it/200x200" alt="John Doe" class="testimonials_picture"> -->
<p class="testimonials_name">Earl<br><span>Veterinary Care Center, Los Angeles</span></p>
</div>
<!--end testimonials_info -->
</div>
<!--end fivecol -->
<!--begin sevencol -->
<div class="sevencol last">
<!--begin testimonials_text -->
<p class="testimonials_text" style="font-size: 17px">"We’re currently using software that hasn’t been updated since 2007 and it doesn’t allow us to fulfill all the info requests we get, we’re still faxing documents on a daily basis. And follow up, and resending… it’s just totally disorganized, and I wish there was a one stop shop because it takes up so much time."</p>
<!--end testimonials_text -->
</div>
<!--end sevencol -->
</div>
<!--end twelvecol -->
</div>
<!--end row -->
</li>
</ul>
</div>
<!--end testimonials_box -->
</div>
<!--end testimonials_wrapper -->
<!--begin about -->
<!-- <section id="about"> -->
<!--begin section_wrapper -->
<div class="section_wrapper">
<!--begin section_box
<div class="section_box">
<!--begin row
<div class="row">
<!--begin twelvecol
<div class="twelvecol">
<!--begin fivecol
<div class="fivecol left_fade">
<img src="http://placehold.it/700x638" alt="picture">
</div>
<!--end fivecol -->
<!--begin sevencol
<div class="sevencol last padding_top right_fade">
<h2>Set to revolutionize the animal care industry</h2>
<p>Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia magni dolores eos qui ratione sequi nesciunt. Neque porro quisquam est, qui ipsum quiaim netsum. Consequuntur magni netsum es qui ratione sequi nesciunt. Neque porro quisquat est quia.</p>
<!--begin featured_dropcap
<div class="featured_dropcap">
<span class="dropcaps_icon"><i class="icon icon-design-pencil-rule-streamline"></i></span>
<p>Quis autem velis reprehenderit et quis voluptate velit esse quam nihil et illum consequatur quia voluptas sit aspernatur aut odit aut fugit.</p>
</div>
<!--end featured_dropcap -->
<!-- begin featured_dropcap
<div class="featured_dropcap">
<span class="dropcaps_icon"><i class="icon icon-speech-streamline-talk-user"></i></span>
<p>Quis autem velis reprehenderit et quis voluptate velit esse quam nihil et illum consequatur quia voluptas sit aspernatur aut odit aut fugit.</p>
</div>
<!--end featured_dropcap -->
<!--begin featured_dropcap
<div class="featured_dropcap">
<span class="dropcaps_icon"><i class="icon icon-streamline-umbrella-weather"></i></span>
<p>Quis autem velis reprehenderit et quis voluptate velit esse quam nihil et illum consequatur quia voluptas sit aspernatur aut odit aut fugit.</p>
</div>
<!--end featured_dropcap -->
</div>
<!--end sevencol -->
</div>
<!--end twelvecol -->
</div>
<!--end row -->
</div>
<!--end section_box -->
</div>
<!--end section_wrapper -->
<!--begin section_wrapper -->
<div class="section_wrapper grey_border">
<!--begin section_box -->
<div class="section_box partners_margins">
<center><h4>In Consultation with:</h4></center>
<!--begin row -->
<div class="row">
<ul class="partners up_fade">
<li><img src="lib/images/aspca.png" alt="ASPCA" width=120px></li>
<li><img src="lib/images/humanesociety.png" alt="Humane Society of the United States" width=100px></li>
<li><img src="lib/images/northshore.png" alt="North Shore Animal League" width=100px></li>
<li><img src="lib/images/lastchance.png" alt="Last Chance Animal Rescue" width=100px></li>
<li><img src="lib/images/bestfriends.png" alt="Best Friends Animal Society" width=100px></li>
<li><img src="lib/images/bideowee.png" alt="Bideowee" width=100px></li>
</ul>
</div>
<!--end row -->
</div>
<!--end section_box -->
</div>
<!--end section_wrapper -->
</section>
<!--end about -->
<!--begin showcase -->
<section id="showcase">
<!--begin call_to_action_dark_wrapper -->
<div class="call_to_action_dark_wrapper">
<!--begin call_to_action_grey -->
<div class="call_to_action_dark">
<h3 class="left_fade">In Beta</h3>
<div class="separator_wrapper bounce_fade">
<div class="separator_first_circle">
<div class="separator_second_circle_grey">
</div>
</div>
</div>
<h4 class="right_fade">Showcase of our prototype.</h4>
</div>
<!--end call_to_action_grey -->
</div>
<!--end call_to_action_dark_wrapper -->
<!--begin section_wrapper -->
<div class="section_wrapper dark_bg">
<!--begin section_box -->
<div class="section_box">
<!--begin row -->
<div class="row">
<!--begin owl-carousel -->
<div id="owl-example" class="owl-carousel">
<!--begin carousel_item -->
<div class="carousel_item">
<img src="lib/images/OPENING_PAGE.jpg" alt="login page" class="owl-picture">
</div>
<!--end carousel_item -->
<!--begin carousel_item -->
<div class="carousel_item">
<img src="lib/images/PP_01.jpg" alt="rfid page" class="owl-picture">
</div>
<!--end carousel_item -->
<!--begin carousel_item -->
<div class="carousel_item">
<img src="lib/images/PP_03.jpg" alt="puppy dashboard" class="owl-picture">
</div>
<!--end carousel_item -->
<!--begin carousel_item -->
<div class="carousel_item">
<img src="lib/images/Patient_appt.jpg" alt="patient appointment" class="owl-picture">
</div>
<!--end carousel_item -->
<!--begin carousel_item -->
<div class="carousel_item">
<img src="lib/images/PP_02.jpg" alt="calendar" class="owl-picture">
</div>
<!--end carousel_item -->
<!--begin carousel_item -->
<div class="carousel_item">
<img src="lib/images/Page2_Doctor.jpg" alt="doctor appointments" class="owl-picture">
</div>
<!--end carousel_item -->
<!--begin carousel_item -->
<div class="carousel_item">
<img src="lib/images/Vaccination_record.jpg" alt="vaccination record" class="owl-picture">
</div>
<!--end carousel_item -->
</div>
<!--end owl-carousel -->
</div>
<!--end row -->
</div>
<!--end section_box -->
</div>
<!--end section_wrapper -->
</section>
<!--end showcase -->
<!--begin newsletter -->
<section id="support">
<!--begin newsletter_wrapper -->
<div class="newsletter_wrapper">
<!--begin newsletter_box -->
<div class="newsletter_box">
<!--begin row -->
<div class="row">
<!--begin twelvecol -->
<div class="twelvecol">
<!--begin threecol -->
<div class="threecol">
<i class="email_icon"></i>
</div>
<!--end threecol -->
<!--begin ninecol -->
<div class="ninecol last">
<!--begin newsletter_info -->
<div class="newsletter_info">
<h2>Sign up for early access</h2>
<p>Please support our Women in Blockchain Startup Team project by submitting your email address to this list.</p>
<!--begin success_box -->
<p class="newsletter_success_box" style="display:none;">We received your message and you'll hear from us soon. Thank You!</p>
<!--end success_box -->
<!--begin newsletter-form -->
<form id="newsletter-form" class="newsletter_form" action="https://petfolio.us18.list-manage.com/subscribe/post?u=95bad12f58957dc4ce018f851&id=b0396b9129" method="post" name="mc-embedded-subscribe-form" target="_blank" novalidate>
<input id="email_newsletter" type="email" name="nf_email" placeholder="Enter Your Email Address" />
<a href="https://petfolio.us18.list-manage.com/subscribe/post?u=95bad12f58957dc4ce018f851&id=b0396b9129"><button type="submit" value="GET STARTED!" id="submit-button-newsletter" onclick="window.location='https://petfolio.us18.list-manage.com/subscribe/post?u=95bad12f58957dc4ce018f851&id=b0396b9129';" />Cheer Us On!</button></a>
</form>
<script type='text/javascript' src='//s3.amazonaws.com/downloads.mailchimp.com/js/mc-validate.js'></script><script type='text/javascript'>(function($) {window.fnames = new Array(); window.ftypes = new Array();fnames[0]='EMAIL';ftypes[0]='email';fnames[1]='FNAME';ftypes[1]='text';fnames[2]='LNAME';ftypes[2]='text';fnames[3]='ADDRESS';ftypes[3]='address';fnames[4]='PHONE';ftypes[4]='phone';fnames[5]='BIRTHDAY';ftypes[5]='birthday';}(jQuery));var $mcj = jQuery.noConflict(true);</script>
<!--end newsletter-form -->
<!-- Begin MailChimp Signup Form -->
</div>
<!--end newsletter_info -->
</div>
<!--end ninecol -->
</div>
<!--end twelvecol -->
</div>
<!--end row -->
</div>
<!--end newsletter_box -->
</div>
<!--end newsletter_wrapper -->
</section>
<!--end newsletter -->
<!--begin footer -->
<footer id="footer">
<!--begin footer_box -->
<div id="footer_box">
<p class="up_fade">Copyright © 2018 Petfolio. <br> As part of the <a href="https://www.startupbus.com/women-in-blockchain" target="_blank" class="blue">Women in Blockchain Startup Bus 2018</a>.</p>
</div>
<!--end footer_box -->
</footer>
<!--end footer -->
</div>
<!--! end of #container -->
<!-- scripts concatenated and minified via ant build script-->
<script src="lib/js/modernizr-2.6.1.min.js"></script>
<script src="lib/js/plugins.js"></script>
<script src="lib/js/jquery.inview.js"></script>
<script src="lib/js/prettyPhoto/js/jquery.prettyPhoto.js"></script>
<script src="lib/js/retina.js"></script>
<script src="lib/js/script.js"></script>
<!-- begin jquery.sticky script-->
<script type="text/javascript" src="lib/js/jquery.sticky.js"></script>
<script>
$(window).load(function(){
$("#header_wrapper").sticky({ topSpacing: 0 });
});
</script>
<!-- end jquery.sticky script-->
<!-- begin menu scrollTo script-->
<script src="lib/js/jquery.scrollTo-min.js"></script>
<script type="text/javascript">
(function($){
$(document).ready(function() {
/* This code is executed after the DOM has been completely loaded */
$("#nav li a, a.scrool").click(function(e){
var full_url = this.href;
var parts = full_url.split("#");
var trgt = parts[1];
var target_offset = $("#"+trgt).offset();
var target_top = target_offset.top;
$('html,body').animate({scrollTop:target_top -69}, 1000);
return false;
});
});
})(jQuery);
</script>
<!-- end menu scrollTo script-->
<!-- begin menu color script-->
<script src="lib/js/jquery.nav.js"></script>
<script>
$(document).ready(function() {
$('#nav').onePageNav({
filter: ':not(.external)',
scrollThreshold: 0.25
});
});
</script>
<!-- end menu color script-->
<!--begin shrink header script -->
<script>
$(function(){
var shrinkHeader = 70;
$(window).scroll(function() {
var scroll = getCurrentScroll();
if ( scroll >= shrinkHeader ) {
$('#header_wrapper').addClass('shrink');
}
else {
$('#header_wrapper').removeClass('shrink');
}
});
function getCurrentScroll() {
return window.pageYOffset;
}
});
</script>
<!--end shrink header script -->
<!-- begin owl.carousel script-->
<script src="lib/js/owl.carousel.js"></script>
<script>
$(document).ready(function($) {
$("#owl-example").owlCarousel();
});
$("body").data("page", "frontpage");
</script>
<!-- end owl.carousel script-->
<!-- begin slider script-->
<script src="lib/js/responsiveslides.min.js"></script>
<script>
// You can also use "$(window).load(function() {"
$(function () {
// Slideshow 4
$("#slider4, #slider3").responsiveSlides({
auto: true,
pager: true,
nav: true,
pause: true,
speed: 500,
timeout: 5000,
namespace: "callbacks",
before: function () {
$('.events').append("<li>before event fired.</li>");
},
after: function () {
$('.events').append("<li>after event fired.</li>");
}
});
});
</script>
<!-- end slider script-->
<!-- begin layerslider script-->
<script src="lib/js/greensock.js"></script>
<script src="lib/js/layerslider.transitions.js"></script>
<script src="lib/js/layerslider.kreaturamedia.jquery.js"></script>
<script type="text/javascript">
// Running the code when the document is ready
$(document).ready(function(){
// Calling LayerSlider on the target element with adding custom slider options
$('#layerslider').layerSlider({
autoStart: true,
pauseOnHover: true,
navPrevNext: false,
navButtons: true,
thumbnailNavigation: false,
autoPlayVideos: false,
firstLayer: 1,
skin: 'borderlesslight',
skinsPath: 'lib/layerslider/skins/'
// Please make sure that you didn't forget to add a comma to the line endings
// except the last line!
});
});
</script>
<script type="text/javascript">
// Running the code when the document is ready
$(document).ready(function(){
// Calling LayerSlider on the target element
$('#layerslider2').layerSlider({
autoStart: true,
pauseOnHover: true,
navPrevNext: false,
navButtons: true,
thumbnailNavigation: false,
autoPlayVideos: false,
firstLayer: 1,
skin: 'borderlesslight',
skinsPath: 'lib/layerslider/skins/'
// Please make sure that you didn't forget to add a comma to the line endings
// except the last line!
});
});
</script>
<!-- end layerslider script-->
</body>
</html>