-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
668 lines (537 loc) · 22.7 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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>New 2017 Professional Social Networking Software</title>
<meta name="description" content="Professional Social Networking Software based on PHP 5.5 and Laravel">
<meta name="keywords" content="social network,social networking,clone facebook,facebook like,social portal,script,php script,community script,">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
<link rel="icon" href="images/favicon.ico">
<link rel="apple-touch-icon" href="images/apple-touch-icon.png">
<link rel="apple-touch-icon" sizes="72x72" href="images/apple-touch-icon-72x72.png">
<link rel="apple-touch-icon" sizes="114x114" href="images/apple-touch-icon-114x114.png">
<!-- BOOTSTRAP -->
<link rel="stylesheet" href="css/bootstrap.min.css">
<!-- FONT ICONS -->
<!-- IonIcons -->
<link rel="stylesheet" href="assets/ionicons/css/ionicons.css">
<!-- Font Awesome -->
<link rel="stylesheet" href="assets/font-awesome/css/font-awesome.min.css">
<!-- Elegant Icons -->
<link rel="stylesheet" href="assets/elegant-icons/style.css">
<!--[if lte IE 7]><script src="assets/elegant-icons/lte-ie7.js"></script><![endif]-->
<!-- CAROUSEL AND LIGHTBOX -->
<link rel="stylesheet" href="css/owl.theme.css">
<link rel="stylesheet" href="css/owl.carousel.css">
<link rel="stylesheet" href="css/nivo-lightbox.css">
<link rel="stylesheet" href="css/nivo_themes/default/default.css">
<!-- COLORS -->
<link rel="stylesheet" href="css/colors/blue.css"> <!-- DEFAULT COLOR/ CURRENTLY USING -->
<!-- <link rel="stylesheet" href="css/colors/red.css"> -->
<!-- <link rel="stylesheet" href="css/colors/green.css"> -->
<!-- <link rel="stylesheet" href="css/colors/purple.css"> -->
<!-- <link rel="stylesheet" href="css/colors/orange.css"> -->
<!-- <link rel="stylesheet" href="css/colors/blue-munsell.css"> -->
<!-- <link rel="stylesheet" href="css/colors/slate.css"> -->
<!-- <link rel="stylesheet" href="css/colors/yellow.css"> -->
<!-- CUSTOM STYLESHEETS -->
<link rel="stylesheet" href="css/styles.css">
<!-- RESPONSIVE FIXES -->
<link rel="stylesheet" href="css/responsive.css">
<!--[if lt IE 9]>
<script src="js/html5shiv.js"></script>
<script src="js/respond.min.js"></script>
<![endif]-->
<!-- ****************
After neccessary customization/modification, Please minify HTML/CSS according to http://browserdiet.com/en/ for better performance
**************** -->
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-64062819-1', 'auto');
ga('send', 'pageview');
</script>
</head>
<body>
<!-- =========================
PRE LOADER
============================== -->
<div class="preloader">
<div class="status"> </div>
</div>
<!-- =========================
HEADER
============================== -->
<header id="home">
<!-- COLOR OVER IMAGE -->
<div class="color-overlay">
<div class="navigation-header">
<!-- STICKY NAVIGATION -->
<div class="navbar navbar-inverse bs-docs-nav navbar-fixed-top sticky-navigation">
<div class="container">
<div class="navbar-header">
<!-- LOGO ON STICKY NAV BAR -->
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#landx-navigation">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<h1><a href="http://ph4social.com">pH4Social::Your Social WebSite Ready in 30min!</a></h1>
</div>
<!-- NAVIGATION LINKS -->
<div class="navbar-collapse collapse" id="landx-navigation">
<ul class="nav navbar-nav navbar-right main-navigation">
<li><a href="#home">Home</a></li>
<li><a href="#section1">Features</a></li>
<li><a href="#section2">Your Needs</a></li>
<li><a href="#section3">What It's for You?</a></li>
<li><a href="#section4"><strong>Download It!</strong></a></li>
<li><a href="#section6">Screenshots</a></li>
<li><a href="/demo/" title="See exactly what you'll get in minutes" rel"=nofollow" target="_blank">Demo</a></li>
</ul>
</div>
</div>
<!-- /END CONTAINER -->
</div>
<!-- /END STICKY NAVIGATION -->
<!-- ONLY LOGO ON HEADER -->
<div class="navbar non-sticky">
<div class="container">
<!--
<div class="navbar-header">
<img src="images/logo.png" alt="">
</div>
-->
<ul class="nav navbar-nav navbar-right social-navigation hidden-xs">
<li><a href="#"><i class="social_facebook_circle"></i></a></li>
<li><a href="#"><i class="social_twitter_circle"></i></a></li>
<li><a href="#"><i class="social_linkedin_circle"></i></a></li>
</ul>
</div>
<!-- /END CONTAINER -->
</div>
<!-- /END ONLY LOGO ON HEADER -->
</div>
<!-- HEADING, FEATURES AND REGISTRATION FORM CONTAINER -->
<div class="container">
<div class="row">
<div class="col-md-6">
<!-- SCREENSHOT -->
<div class="home-screenshot side-screenshot pull-left">
<img src="images/social-networking-software.jpg" alt="Feature" class="img-responsive">
</div>
</div>
<!-- RIGHT - HEADING AND TEXTS -->
<div class="col-md-6 intro-section">
<h1 class="intro text-left">
Start a <strong>Social Networking Website</strong> Today with <span class="colored-text"><strong>pH4Social</strong></span>
</h1>
<p class="sub-heading text-left">
Build a new Business online with <strong>pH4Social</strong>. Offer a <strong>Social Networking Service</strong> to your users or customers in the easiest way.<br />
<strong>100% unencrypted source code</strong> and PSD files included allowing you to make your own modification and changes as you want, beautiful code allowing you to understand easily the code and know what modification you need, based on the latest Web technologies and uses the most popular libraries like <strong>Bootstrap</strong>, <strong>jQuery</strong> and <strong>Laravel</strong> allowing you to find and have a lot of documentation ready on the Net and a lot of developers already know it!
</p>
<!-- CTA BUTTONS -->
<div id="cta-5" class="button-container">
<a href="#section4" class="btn standard-button pull-left">Get Started!</a>
<a href="#section1" class="btn secondary-button-white pull-left">Learn More...</a>
</div>
</div>
<h2 class="intro text-left"><em>After months of development and testing, we are very pride today to offer you have the first software allowing to create any Social Networking service/sites in the easiest and cheapest way!</em></h2>
<p> </p>
</div>
</div>
<!-- /END HEADING, FEATURES AND REGISTRATION FORM CONTAINER -->
</div>
</header>
<!-- =========================
SECTION 1
============================== -->
<section class="section1" id="section1">
<div class="container">
<!-- SECTION HEADING -->
<h2>$pH4Social->Features('Some')</h2>
<div class="colored-line">
</div>
<div class="sub-heading">
Some Popular Features ...
</div>
<div class="features">
<!-- FEATURES ROW 1 -->
<div class="row">
<!-- SINGLE FEATURE BOX -->
<div class="col-md-4">
<div class="feature">
<div class="icon">
<span class="icon_tablet"></span>
</div>
<h4>Responsive Design</h4>
<p>
pH4Social comes with a full responsive design. That means everyone can use your website through any modern devices (Cell Phone, SmartPhone, Laptop, PC, Nintendo DS, PSP, ...).
</p>
</div>
</div>
<!-- SINGLE FEATURE BOX -->
<div class="col-md-4">
<div class="feature">
<div class="icon">
<span class="icon_chat_alt"></span>
</div>
<h4>Time Line & Profile Page</h4>
<p>
The powerful timeline of pH4Social allows your users to show-off them-self and have a friendly page. The feature will give you a good image of your enterprise.
</p>
</div>
</div>
<!-- SINGLE FEATURE BOX -->
<div class="col-md-4">
<div class="feature">
<div class="icon">
<span class="icon_link"></span>
</div>
<h4>SEO optimized</h4>
<p>
The software is optimized for the SEO and Google's algorithm. We have worked a lot to provide a suck optimization. It will give you the best opportunity to be on the best Google & Bing search position. You will be 60% more lucky to get 40% of traffic more than most other "social networking" software.
</p>
</div>
</div>
</div>
<!-- FEATURES ROW 2 -->
<div class="row">
<!-- SINGLE FEATURE BOX -->
<div class="col-md-4">
<div class="feature">
<div class="icon">
<span class="icon_genius"></span>
</div>
<h4>Fast, Smart and Intuitive to Use</h4>
<p>
78% of users left a website because it is too slow. Users hate when a website is slow, Search engine too (and you probably agree with that), that's why, <strong>pH4Social</strong> has been built to be very fast (it uses also a static/db cache system) and will display pages in the fastest time.<br />
Users don't like sites with difficult navigation as well (search engine such Google too), we understand it very well, and have been working a lot on it to provide a software containing one of the easiest and intuitive navigation in order to make your users and Google happy!
</p>
</div>
</div>
<!-- SINGLE FEATURE BOX -->
<div class="col-md-4">
<div class="feature">
<div class="icon">
<span class="icon_lock_alt"></span>
</div>
<h4>Full Membership System with Highly Configurable Permissions</h4>
<p>
We have created a very easy and powerful membership system that can be suitable in any websites.<br />
It will allow you to have an unbeatable organization, save you money and time in moderation members and allow you to get even more user!
</p>
</div>
</div>
<!-- SINGLE FEATURE BOX -->
<div class="col-md-4">
<div class="feature">
<div class="icon">
<span class="icon_puzzle_alt"></span>
</div>
<h4>Lot of features for Users, Moderators and Admins!</h4>
<p>
pH4Social offers the most popular feature that every social networking sites should have. We have created a lot of modules like Blog, Images, Videos (including Youtube/Vimeo API), CHat, IM, Wall, Cover Profile, Comments and much more!<br />
Moderators are able to manage all UGC (User-Generated Content), add blog, articles, and even edit some website's info.<br />
Finally, Admins (the Gods...), are able to do everything able to do on the website. Admins can also add new admins (and of course add new moderators and users as well).
</p>
</div>
</div>
</div>
<!-- FEATURES ROW 3 -->
<div class="row">
<!-- SINGLE FEATURE BOX -->
<div class="col-md-4">
<div class="feature">
<div class="icon">
<span class="icon_chat_alt"></span>
</div>
<h4>Interactive Chat & Messenger + IM</h4>
<p>
pH4Social offer a draggable IM and a Chat allowing instantaneous message with notification and bip.
</p>
</div>
</div>
<!-- SINGLE FEATURE BOX -->
<div class="col-md-4">
<div class="feature">
<div class="icon">
<span class="icon_search_alt"></span>
</div>
<h4>Interactive Ajax Search Form + Feature Users</h4>
<p>
Nowadays, everybody know that search system should be still more and more smart and provide the most appropriate data and with the best quality to the user. We thought of this, our research system uses several innovative technologies including Web cookies in order to read the user's mind and suggest that he thinks at the moment and give him exactly the profiles (or other data) he wants.
</p>
</div>
</div>
<!-- SINGLE FEATURE BOX -->
<div class="col-md-4">
<div class="feature">
<div class="icon">
<span class="icon_lifesaver"></span>
</div>
<h4>Lifetime Support</h4>
<p>
We want the curve of your business continues to grow up and unlik most competitive software, we don't want that you are dealing with additional problems. Our goal is to save you money and time and this is guaranteed with our software.<br />
That's why, we understand that Support is very important for you and your business. Unlike most competing software, we offer a "<strong>LifeTime</strong> technical support service.
</p>
</div>
</div>
</div>
</div>
</div> <!-- /END CONTAINER -->
</section>
<!-- =========================
SECTION 2
============================== -->
<section class="section2 bgcolor-2" id="section2">
<div class="container">
<div class="row">
<div class="col-md-6">
<!-- DETAILS WITH LIST -->
<div class="brief text-left">
<!-- HEADING -->
<h2>What do you really Want/Need?</h2>
<div class="colored-line pull-left">
</div>
<!-- TEXT -->
<p> </p>
<ul>
<li><span class="arrow_right"></span> If you're looking for a long time to a simple & powerful Social Software</li>
<li><span class="arrow_right"></span> If you have tested a lot of Social Scripts and wasn’t satisfied with those, you should test “pH4Social”</li>
<li><span class="arrow_right"></span> If you want to have you own Social Network online in less that 1 hour, pH4Social is simply for you!</li>
<li><span class="arrow_right"></span> If you need a Portal Web for your company, you’re also on a good place</li>
<li><span class="arrow_right"></span> If you need a Social Network powerful & resistant to a very High Traffic</li>
<li><span class="arrow_right"></span> If you don’t have a powerful server or want to pay a cheap host, and so you need a software using low server resource (CPU)</li>
<li><span class="arrow_right"></span> If you don’t want to pay Ads and want a software highly optimized for SEO</li>
</ul>
<!-- FEATURE LIST -->
<ul class="feature-list-2">
<!-- FEATURE -->
<li>
<!-- ICON -->
<div class="icon-container pull-left">
<span class="icon_cog"></span>
</div>
<!-- DETAILS -->
<div class="details pull-left">
<h6>Best Social Features Available Included in It!</h6>
<p>
We believe that our software is one of the best in Social Networking PHP Scripts currently available!<br />
We’re working hard to always keep the best social features in it and we’re always trying to improve and include new exciting and exclusive features.
</p>
</div>
</li>
<!-- FEATURE -->
<!--<li>
<div class="icon-container pull-left">
<span class="icon_cart_alt"></span>
</div>
<div class="details pull-left">
<h6>Lorem Ipsum</h6>
<p>
Lorem lean startup ipsum product market fit customer development acquihire technical cofounder.
</p>
</div>
</li>>-->
</ul>
</div>
</div>
<div class="col-md-6">
<!-- SCREENSHOT -->
<div class="side-screenshot2 pull-right">
<img src="images/image-2.jpg" alt="Feature" class="img-responsive">
</div>
</div>
</div> <!-- END ROW -->
</div> <!-- END CONTAINER -->
</section>
<!-- =========================
SECTION 3
============================== -->
<section class="section3" id="section3">
<div class="container">
<div class="row">
<div class="col-md-6">
<!-- SCREENSHOT -->
<div class="side-screenshot pull-left">
<img src="images/image-1.jpg" alt="Feature" class="img-responsive">
</div>
</div>
<div class="col-md-6">
<!-- DETAILS WITH LIST -->
<div class="brief text-left">
<!-- HEADING -->
<h2>What do you will Get?</h2>
<div class="colored-line pull-left">
</div>
<!-- TEXT -->
<p> </p>
<ul>
<li><span class="icon_check"></span> Professional Social Software</li>
<li><span class="icon_check"></span> 100% Customizable</li>
<li><span class="icon_check"></span> Responsive Template (fits over all modern devices)</li>
<li><span class="icon_check"></span> Complete Admin Panel to save considerable time</li>
<li><span class="icon_check"></span> SEO optimization to get more and more visitors</li>
<li><span class="icon_check"></span> Attractive registration form to easily convert any “visitors” into “members”</li>
<li><span class="icon_check"></span> Keep in Touch easily with your Members through our ingenious Messaging System</li>
<li><span class="icon_check"></span> Enjoy your social network without a Hassle for you!</li>
<li><span class="icon_check"></span> Manage all your Members in minutes with only few clicks</li>
</ul>
<!-- FEATURE LIST -->
<!--<ul class="feature-list-2">
<li>
<div class="icon-container pull-left">
<span class="icon_cog"></span>
</div>
<div class="details pull-left">
<h6>Easy to Customize</h6>
<p>
Lorem lean startup ipsum product market fit customer development acquihire technical cofounder.
</p>
</div>
</li>
<li>
<div class="icon-container pull-left">
<span class="icon_cart_alt"></span>
</div>
<div class="details pull-left">
<h6>Lorem Ipsum</h6>
<p>
Lorem lean startup ipsum product market fit customer development acquihire technical cofounder.
</p>
</div>
</li>
</ul>-->
</div>
</div> <!-- /END DETAILS WITH LIST -->
</div> <!-- END ROW -->
</div> <!-- END CONTAINER -->
</section>
<!-- =========================
SECTION 4
============================== -->
<section class="section4 bgcolor-2" id="section4">
<div class="container">
<!-- SECTION HEADING -->
<h2>$pH4Social->Package()</h2>
<div class="colored-line">
</div>
<div class="sub-heading">
Create my Social Networking Business right now.<br />
In 10min, after purchase your Web host, you will have a professional Social Network Website ready for your business, company, hobbies or even for yourself!
</div>
<h3>Give you a change in the "Social" Business<h3>
<h4>Nowadays, millions of People earn their Living with it, are Famous or got a better job, so why not you?</h4>
<p>... and even some became millionaire or billionaire with it</p>
<div id="cta-1"><p><strong>Psst! Be Smart & Fast</strong>, <a href="http://clients.hizup.com/buy-ph4social" rel="nofollow" class="btn secondary-button">Get It Today!</a></p></div>
<p> </p>
</div> <!-- /END CONTAINER -->
</section>
<!-- =========================
SECTION 6
============================== -->
<section class="section6 bgcolor-2" id="section6">
<div class="container">
<!-- SECTION HEADING -->
<h2>$pH4Social->Screenshots()</h2>
<div class="colored-line">
</div>
<!-- SECTION HEADING -->
<h3>Just an idea of what you will get after purchase</h3>
<div class="colored-line">
</div>
<div class="sub-heading">
If you are still not satisfied, just remember that we offer a two-month guarantee
</div>
<!-- SCREENSHOTS -->
<div class="row screenshots">
<div id="screenshots" class="owl-carousel owl-theme">
<div class="shot">
<a href="images/screenshots/1.jpg" data-lightbox-gallery="screenshots-gallery"><img src="images/screenshots/1.jpg" alt="Screenshot"></a>
</div>
<div class="shot">
<a href="images/screenshots/3.jpg" data-lightbox-gallery="screenshots-gallery"><img src="images/screenshots/2.jpg" alt="Screenshot"></a>
</div>
<div class="shot">
<a href="images/screenshots/2.jpg" data-lightbox-gallery="screenshots-gallery"><img src="images/screenshots/3.jpg" alt="Screenshot"></a>
</div>
<div class="shot">
<a href="images/screenshots/4.jpg" data-lightbox-gallery="screenshots-gallery"><img src="images/screenshots/4.jpg" alt="Screenshot"></a>
</div>
<div class="shot">
<a href="images/screenshots/1.jpg" data-lightbox-gallery="screenshots-gallery"><img src="images/screenshots/5.jpg" alt="Screenshot"></a>
</div>
<div class="shot">
<a href="images/screenshots/2.jpg" data-lightbox-gallery="screenshots-gallery"><img src="images/screenshots/6.jpg" alt="Screenshot"></a>
</div>
</div>
</div> <!-- /END SCREENSHOTS -->
</div> <!-- /END CONTAINER -->
</section>
<!-- =========================
SECTION 10 - FOOTER
============================== -->
<footer class="bgcolor-2">
<div class="container">
<div class="footer-logo">© <span id="copyrightYear"></span> <strong>pH4Social</strong> -> Social Networking Software</div>
<div class="copyright">
<small>Made with <span class="icon_heart_alt"></span> in <em>London Town</em> through the <em>IDzUp's Lab</em> and owned by <em><a href="http://hizup.uk" target="_blank">HiZup</a> Ltd</em>. Company registered in England and Wales under CRN 8808987</small>
</div>
<ul class="social-icons">
<li><a href="https://www.facebook.com/HiZup"><span class="social_facebook_square"></span></a></li>
<li><a href="https://twitter.com/HiZupLimited"><span class="social_twitter_square"></span></a></li>
<!--
<li><a href=""><span class="social_pinterest_square"></span></a></li>
<li><a href=""><span class="social_googleplus_square"></span></a></li>
<li><a href=""><span class="social_instagram_square"></span></a></li>
<li><a href=""><span class="social_linkedin_square"></span></a></li>
-->
</ul>
</div>
</footer>
<script>document.getElementById('copyrightYear').innerHTML=(new Date).getFullYear()</script>
<script src="js/jquery.min.js"></script>
<script>
// LOADER
// makes sure the whole site is loaded
jQuery(window).load(function() {
"use strict";
// will first fade out the loading animation
jQuery(".status").fadeOut();
// will fade out the whole DIV that covers the website.
jQuery(".preloader").delay(300).fadeOut("slow");
})
</script>
<script src="js/bootstrap.min.js"></script>
<script src="js/retina-1.1.0.min.js"></script>
<script src="js/smoothscroll.js"></script>
<script src="js/jquery.scrollTo.min.js"></script>
<script src="js/jquery.localScroll.min.js"></script>
<script src="js/owl.carousel.min.js"></script>
<script src="js/nivo-lightbox.min.js"></script>
<script src="js/simple-expand.min.js"></script>
<script src="js/jquery.nav.js"></script>
<script src="js/jquery.fitvids.js"></script>
<script src="js/jquery.ajaxchimp.min.js"></script>
<script src="js/custom.js"></script>
<!-- ****************
After neccessary customization/modification, Please minify JavaScript/jQuery according to http://browserdiet.com/en/ for better performance
**************** -->
<!--
<script>var Tawk_API=Tawk_API||{}, Tawk_LoadStart=new Date();
(function(){
var s1=document.createElement("script"),s0=document.getElementsByTagName("script")[0];
s1.async=true;
s1.src='https://embed.tawk.to/5677306869d23ab53d0327ec/default';
s1.charset='UTF-8';
s1.setAttribute('crossorigin','*');
s0.parentNode.insertBefore(s1,s0);
})();
</script>
-->
</body>
</html>