-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
949 lines (944 loc) · 51.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
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
<!DOCTYPE html>
<!--
* A Design by GraphBerry
* Author: GraphBerry
* Author URL: http://graphberry.com
* License: http://graphberry.com/pages/license
-->
<html lang="en">
<head>
<meta charset=utf-8>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Hackafé</title>
<!-- Load Roboto font -->
<link href='http://fonts.googleapis.com/css?family=Roboto:400,300,700&subset=latin,latin-ext' rel='stylesheet' type='text/css'>
<link href="https://fonts.googleapis.com/css?family=Raleway&display=swap" rel="stylesheet">
<!-- Load css styles -->
<link rel="stylesheet" type="text/css" href="css/bootstrap.css" />
<link rel="stylesheet" type="text/css" href="css/bootstrap-responsive.css" />
<link rel="stylesheet" type="text/css" href="css/style.css" />
<link rel="stylesheet" type="text/css" href="css/pluton.css" />
<!--[if IE 7]>
<link rel="stylesheet" type="text/css" href="css/pluton-ie7.css" />
<![endif]-->
<link rel="stylesheet" type="text/css" href="css/jquery.cslider.css" />
<link rel="stylesheet" type="text/css" href="css/jquery.bxslider.css" />
<link rel="stylesheet" type="text/css" href="css/animate.css" />
<!-- Fav and touch icons -->
<link rel="apple-touch-icon-precomposed" sizes="144x144" href="images/ico/apple-touch-icon-144.png">
<link rel="apple-touch-icon-precomposed" sizes="114x114" href="images/ico/apple-touch-icon-114.png">
<link rel="apple-touch-icon-precomposed" sizes="72x72" href="images/apple-touch-icon-72.png">
<link rel="apple-touch-icon-precomposed" href="images/ico/apple-touch-icon-57.png">
<link rel="shortcut icon" href="images/ico/favicon.ico">
</head>
<body>
<div class="navbar">
<div class="navbar-inner">
<div class="container">
<a href="#" class="brand">
<img src="images/logo.png" width="40" height="40" alt="Logo" />
Hackafé
<!-- This is website logo -->
</a>
<!-- Navigation button, visible on small resolution -->
<button type="button" class="btn btn-navbar" data-toggle="collapse" data-target=".nav-collapse">
<i class="icon-menu"></i>
</button>
<!-- Main navigation -->
<div class="nav-collapse collapse pull-right">
<ul class="nav" id="top-navigation">
<li class="active"><a href="#home">Home</a></li>
<li><a href="#service">Services</a></li>
<li><a href="#portfolio">Portfolio</a></li>
<li><a href="#about">About</a></li>
<li><a href="#clients">Clients</a></li>
<li><a href="#price">Price</a></li>
<li><a href="#contact">Contact</a></li>
</ul>
</div>
<!-- End main navigation -->
</div>
</div>
</div>
<!-- Start home section -->
<div id="home">
<!-- Start cSlider -->
<div id="da-slider" class="da-slider">
<div class="triangle"></div>
<!-- mask elemet use for masking background image -->
<div class="mask"></div>
<!-- All slides centred in container element -->
<div class="container">
<!-- Start first slide -->
<div class="da-slide">
<h2 class="fittext2">This Is Hackafé</h2>
<h4>Innovative Technology Solutions</h4>
<p>We use the latest in UNIX-based open-source technology to create high-availability cloud-based platforms that work for you and your business.</p>
<a href="#" class="da-link button">Read more</a>
<div class="da-img">
<img src="images/Slider01.png" alt="image01" width="320">
</div>
</div>
<!-- End first slide -->
<!-- Start second slide -->
<div class="da-slide">
<h2>Mobile Friendly</h2>
<h4>Let Your Smart Devices Keep You Connected</h4>
<p>Hackafé products are developed with all platforms in mind, so you'll never be left out of the loop when you're on the go.</p>
<a href="#" class="da-link button">Read more</a>
<div class="da-img">
<img src="images/Slider02.png" width="320" alt="image02">
</div>
</div>
<!-- End second slide -->
<!-- Start third slide -->
<div class="da-slide">
<h2>Start Today</h2>
<h4>Hackafé Works For You</h4>
<p>With multiple years of experience in creating responsive, scalable business and personal solutions at scalable prices, you can be sure that Hackafé is a choice for you.</p>
<a href="#" class="da-link button">Read more</a>
<div class="da-img">
<img src="images/Slider03.png" width="320" alt="image03">
</div>
</div>
<!-- Start third slide -->
<!-- Start cSlide navigation arrows -->
<div class="da-arrows">
<span class="da-arrows-prev"></span>
<span class="da-arrows-next"></span>
</div>
<!-- End cSlide navigation arrows -->
</div>
</div>
</div>
<!-- End home section -->
<!-- Service section start -->
<div class="section primary-section" id="service">
<div class="container">
<!-- Start title section -->
<div class="title">
<h1>What Do We Do?</h1>
<!-- Section's title goes here -->
<p>At Hackafé, we're dedicated to producing efficient and innovative solutions with bleeding edge technologies.</p>
<!--Simple description for section goes here. -->
</div>
<div class="row-fluid">
<div class="span4">
<div class="centered service">
<div class="circle-border zoom-in">
<img class="img-circle" src="images/Service1.png" alt="service 1">
</div>
<h3>Agile</h3>
<p>We Create Modern And Robust Solutions At A Timescale That Works for <em>Our</em> Business.</p>
</div>
</div>
<div class="span4">
<div class="centered service">
<div class="circle-border zoom-in">
<img class="img-circle" src="images/Service2.png" alt="service 2" />
</div>
<h3>Progress-Focused</h3>
<p>Our Engineers Use Advanced Team Management Systems To Effectively Pursue Rapid Development</p>
</div>
</div>
<div class="span4">
<div class="centered service">
<div class="circle-border zoom-in">
<img class="img-circle" src="images/Service3.png" alt="service 3">
</div>
<h3>User-Centric</h3>
<p>Our design team is proficient in promoting a pleasant and enhanced user experience on all platforms.</p>
</div>
</div>
</div>
</div>
</div>
<!-- Service section end -->
<!-- Portfolio section start -->
<div class="section secondary-section " id="portfolio">
<div class="triangle"></div>
<div class="container">
<div class=" title">
<h1>Have You Seen our Works?</h1>
<p>Hackafé has a wide portfolio of prior successes for you to peruse.</p>
</div>
<ul class="nav nav-pills">
<li class="filter" data-filter="all">
<a href="#noAction">All</a>
</li>
<li class="filter" data-filter="mostly">
<a href="#noAction">Mostly Useless</a>
</li>
<li class="filter" data-filter="entirely">
<a href="#noAction">Entirely Useless</a>
</li>
<li class="filter" data-filter="other">
<a href="#noAction">Other</a>
</li>
</ul>
<!-- Start details for portfolio project 1 -->
<div id="single-project">
<div id="slidingDiv" class="toggleDiv row-fluid single-project">
<div class="span6">
<img src="images/Portfolio01.png" alt="project 1" />
</div>
<div class="span6">
<div class="project-description">
<div class="project-title clearfix">
<h3>Websites for other clients</h3>
<span class="show_hide close">
<i class="icon-cancel"></i>
</span>
</div>
<div class="project-info">
<div>
<span>Client</span>UMBC LUG</div>
<div>
<span>Date</span>July 2015</div>
<div>
<span>Skills</span>HTML5, CSS3, JavaScript</div>
<div>
<span>Link</span>http://lug.umbc.edu</div>
</div>
<p>We revolutionized the LUG website by re-invigorating their existing content to maximize useability in a user-centric manner.</p>
</div>
</div>
</div>
<!-- End details for portfolio project 1 -->
<!-- Start details for portfolio project 2 -->
<div id="slidingDiv1" class="toggleDiv row-fluid single-project">
<div class="span6">
<img src="images/Portfolio02.png" alt="project 2">
</div>
<div class="span6">
<div class="project-description">
<div class="project-title clearfix">
<h3>HTCPCP</h3>
<span class="show_hide close">
<i class="icon-cancel"></i>
</span>
</div>
<div class="project-info">
<div>
<span>Client</span>The Uncaffeinated Masses</div>
<div>
<span>Date</span>March 2016</div>
<div>
<span>Skills</span>HTML5, CSS3, JavaScript, C, Electronics</div>
<div>
<span>Link</span>https://github.com/umbc-hackafe/htcpcp</div>
</div>
<p>Hackafé developed an enterprise-ready alertness enhancing technology in order to streamline employee morning activation.</p>
</div>
</div>
</div>
<!-- End details for portfolio project 2 -->
<!-- Start details for portfolio project 3 -->
<div id="slidingDiv2" class="toggleDiv row-fluid single-project">
<div class="span6">
<img src="images/Portfolio03.png" alt="project 3">
</div>
<div class="span6">
<div class="project-description">
<div class="project-title clearfix">
<h3>Webste for Some Client</h3>
<span class="show_hide close">
<i class="icon-cancel"></i>
</span>
</div>
<div class="project-info">
<div>
<span>Client</span>Some Client Name</div>
<div>
<span>Date</span>July 2013</div>
<div>
<span>Skills</span>HTML5, CSS3, JavaScript</div>
<div>
<span>Link</span>http://examplecomp.com</div>
</div>
<p>How far you go in life depends on your being tender with the young, compassionate with the aged, sympathetic with the striving and tolerant of the weak and strong. Because someday in your life you will have been all of these.</p>
</div>
</div>
</div>
<!-- End details for portfolio project 3 -->
<!-- Start details for portfolio project 4 -->
<div id="slidingDiv3" class="toggleDiv row-fluid single-project">
<div class="span6">
<img src="images/Portfolio04.png" alt="project 4">
</div>
<div class="span6">
<div class="project-description">
<div class="project-title clearfix">
<h3>Project for Some Client</h3>
<span class="show_hide close">
<i class="icon-cancel"></i>
</span>
</div>
<div class="project-info">
<div>
<span>Client</span>Some Client Name</div>
<div>
<span>Date</span>July 2013</div>
<div>
<span>Skills</span>HTML5, CSS3, JavaScript</div>
<div>
<span>Link</span>http://examplecomp.com</div>
</div>
<p>Life's but a walking shadow, a poor player, that struts and frets his hour upon the stage, and then is heard no more; it is a tale told by an idiot, full of sound and fury, signifying nothing.</p>
</div>
</div>
</div>
<!-- End details for portfolio project 4 -->
<!-- Start details for portfolio project 5 -->
<div id="slidingDiv4" class="toggleDiv row-fluid single-project">
<div class="span6">
<img src="images/Portfolio05.png" alt="project 5">
</div>
<div class="span6">
<div class="project-description">
<div class="project-title clearfix">
<h3>Webste for Some Client</h3>
<span class="show_hide close">
<i class="icon-cancel"></i>
</span>
</div>
<div class="project-info">
<div>
<span>Client</span>Some Client Name</div>
<div>
<span>Date</span>July 2013</div>
<div>
<span>Skills</span>HTML5, CSS3, JavaScript</div>
<div>
<span>Link</span>http://examplecomp.com</div>
</div>
<p>We need to give each other the space to grow, to be ourselves, to exercise our diversity. We need to give each other space so that we may both give and receive such beautiful things as ideas, openness, dignity, joy, healing, and inclusion.</p>
</div>
</div>
</div>
<!-- End details for portfolio project 5 -->
<!-- Start details for portfolio project 6 -->
<div id="slidingDiv5" class="toggleDiv row-fluid single-project">
<div class="span6">
<img src="images/Portfolio06.png" alt="project 6">
</div>
<div class="span6">
<div class="project-description">
<div class="project-title clearfix">
<h3>Webste for Some Client</h3>
<span class="show_hide close">
<i class="icon-cancel"></i>
</span>
</div>
<div class="project-info">
<div>
<span>Client</span>Some Client Name</div>
<div>
<span>Date</span>July 2013</div>
<div>
<span>Skills</span>HTML5, CSS3, JavaScript</div>
<div>
<span>Link</span>http://examplecomp.com</div>
</div>
<p>I went to the woods because I wished to live deliberately, to front only the essential facts of life, and see if I could not learn what it had to teach, and not, when I came to die, discover that I had not lived.</p>
</div>
</div>
</div>
<!-- End details for portfolio project 6 -->
<!-- Start details for portfolio project 7 -->
<div id="slidingDiv6" class="toggleDiv row-fluid single-project">
<div class="span6">
<img src="images/Portfolio07.png" alt="project 7">
</div>
<div class="span6">
<div class="project-description">
<div class="project-title clearfix">
<h3>Webste for Some Client</h3>
<span class="show_hide close">
<i class="icon-cancel"></i>
</span>
</div>
<div class="project-info">
<div>
<span>Client</span>Some Client Name</div>
<div>
<span>Date</span>July 2013</div>
<div>
<span>Skills</span>HTML5, CSS3, JavaScript</div>
<div>
<span>Link</span>http://examplecomp.com</div>
</div>
<p>Always continue the climb. It is possible for you to do whatever you choose, if you first get to know who you are and are willing to work with a power that is greater than ourselves to do it.</p>
</div>
</div>
</div>
<!-- End details for portfolio project 7 -->
<!-- Start details for portfolio project 8 -->
<div id="slidingDiv7" class="toggleDiv row-fluid single-project">
<div class="span6">
<img src="images/Portfolio08.png" alt="project 8">
</div>
<div class="span6">
<div class="project-description">
<div class="project-title clearfix">
<h3>Webste for Some Client</h3>
<span class="show_hide close">
<i class="icon-cancel"></i>
</span>
</div>
<div class="project-info">
<div>
<span>Client</span>Some Client Name</div>
<div>
<span>Date</span>July 2013</div>
<div>
<span>Skills</span>HTML5, CSS3, JavaScript</div>
<div>
<span>Link</span>http://examplecomp.com</div>
</div>
<p>What if you gave someone a gift, and they neglected to thank you for it - would you be likely to give them another? Life is the same way. In order to attract more of the blessings that life has to offer, you must truly appreciate what you already have.</p>
</div>
</div>
</div>
<!-- End details for portfolio project 8 -->
<!-- Start details for portfolio project 9 -->
<div id="slidingDiv8" class="toggleDiv row-fluid single-project">
<div class="span6">
<img src="images/Portfolio09.png" alt="project 9">
</div>
<div class="span6">
<div class="project-description">
<div class="project-title clearfix">
<h3>Webste for Some Client</h3>
<span class="show_hide close">
<i class="icon-cancel"></i>
</span>
</div>
<div class="project-info">
<div>
<span>Client</span>Some Client Name</div>
<div>
<span>Date</span>July 2013</div>
<div>
<span>Skills</span>HTML5, CSS3, JavaScript</div>
<div>
<span>Link</span>http://examplecomp.com</div>
</div>
<p>I learned that we can do anything, but we can't do everything... at least not at the same time. So think of your priorities not in terms of what activities you do, but when you do them. Timing is everything.</p>
</div>
</div>
</div>
<!-- End details for portfolio project 9 -->
<ul id="portfolio-grid" class="thumbnails row">
<li class="span4 mix mostly">
<div class="thumbnail">
<img src="images/Portfolio01.png" alt="project 1">
<a href="#single-project" class="more show_hide" rel="#slidingDiv">
<i class="icon-plus"></i>
</a>
<h3>UMBC Linux Users Group</h3>
<p>Web Development At Scale</p>
<div class="mask"></div>
</div>
</li>
<li class="span4 mix mostly">
<div class="thumbnail">
<img src="images/Portfolio02.png" alt="project 2">
<a href="#single-project" class="show_hide more" rel="#slidingDiv1">
<i class="icon-plus"></i>
</a>
<h3>HTCPCP</h3>
<p>HyperText Coffee Pot Control Protocol</p>
<div class="mask"></div>
</div>
</li>
<li class="span4 mix identity">
<div class="thumbnail">
<img src="images/Portfolio03.png" alt="project 3">
<a href="#single-project" class="more show_hide" rel="#slidingDiv2">
<i class="icon-plus"></i>
</a>
<h3>Thumbnail label</h3>
<p>Thumbnail caption...</p>
<div class="mask"></div>
</div>
</li>
<li class="span4 mix web">
<div class="thumbnail">
<img src="images/Portfolio04.png" alt="project 4">
<a href="#single-project" class="show_hide more" rel="#slidingDiv3">
<i class="icon-plus"></i>
</a>
<h3>Thumbnail label</h3>
<p>Thumbnail caption...</p>
<div class="mask"></div>
</div>
</li>
<li class="span4 mix photo">
<div class="thumbnail">
<img src="images/Portfolio05.png" alt="project 5">
<a href="#single-project" class="show_hide more" rel="#slidingDiv4">
<i class="icon-plus"></i>
</a>
<h3>Thumbnail label</h3>
<p>Thumbnail caption...</p>
<div class="mask"></div>
</div>
</li>
<li class="span4 mix identity">
<div class="thumbnail">
<img src="images/Portfolio06.png" alt="project 6">
<a href="#single-project" class="show_hide more" rel="#slidingDiv5">
<i class="icon-plus"></i>
</a>
<h3>Thumbnail label</h3>
<p>Thumbnail caption...</p>
<div class="mask"></div>
</div>
</li>
<li class="span4 mix web">
<div class="thumbnail">
<img src="images/Portfolio07.png" alt="project 7" />
<a href="#single-project" class="show_hide more" rel="#slidingDiv6">
<i class="icon-plus"></i>
</a>
<h3>Thumbnail label</h3>
<p>Thumbnail caption...</p>
<div class="mask"></div>
</div>
</li>
<li class="span4 mix photo">
<div class="thumbnail">
<img src="images/Portfolio08.png" alt="project 8">
<a href="#single-project" class="show_hide more" rel="#slidingDiv7">
<i class="icon-plus"></i>
</a>
<h3>Thumbnail label</h3>
<p>Thumbnail caption...</p>
<div class="mask"></div>
</div>
</li>
<li class="span4 mix identity">
<div class="thumbnail">
<img src="images/Portfolio09.png" alt="project 9">
<a href="#single-project" class="show_hide more" rel="#slidingDiv8">
<i class="icon-plus"></i>
</a>
<h3>Thumbnail label</h3>
<p>Thumbnail caption...</p>
<div class="mask"></div>
</div>
</li>
</ul>
</div>
</div>
</div>
<!-- Portfolio section end -->
<!-- About us section start -->
<div class="section primary-section" id="about">
<div class="triangle"></div>
<div class="container">
<div class="title">
<h1>Who We Are?</h1>
<p>Our team of engineers, artists, and lackies are ready to tackle any task thrown our way!</p>
</div>
<div class="row-fluid team">
<div class="span4" id="first-person">
<div class="thumbnail">
<img src="images/Team1.png" alt="team 1">
<h3>Jason Spriggs</h3>
<ul class="social">
<li>
<a href="">
<span class="icon-facebook-circled"></span>
</a>
</li>
<li>
<a href="">
<span class="icon-twitter-circled"></span>
</a>
</li>
<li>
<a href="">
<span class="icon-linkedin-circled"></span>
</a>
</li>
</ul>
<div class="mask">
<h2>Corporate Technician</h2>
<p>With a strong penchant for revitalizing business infrastructure, Jason has a proven record of synergistic business-ready interpersonal and intra-system dynamics.</p>
</div>
</div>
</div>
<div class="span4" id="second-person">
<div class="thumbnail">
<img src="images/Team2.png" alt="team 1">
<h3>Mark Murnane</h3>
<ul class="social">
<li>
<a href="">
<span class="icon-facebook-circled"></span>
</a>
</li>
<li>
<a href="">
<span class="icon-twitter-circled"></span>
</a>
</li>
<li>
<a href="">
<span class="icon-linkedin-circled"></span>
</a>
</li>
</ul>
<div class="mask">
<h2>Hardware Engineer</h2>
<p>When the project demands hardware, Mark is ready to provide whatever is needed to ensure complete client satisfaction. Mark has a proven track record of intricate, client-centric solutions to simple problems.</p>
</div>
</div>
</div>
<div class="span4" id="third-person">
<div class="thumbnail">
<img src="images/Team3.png" alt="team 1">
<h3>Josiah Tillet</h3>
<ul class="social">
<li>
<a href="">
<span class="icon-facebook-circled"></span>
</a>
</li>
<li>
<a href="">
<span class="icon-twitter-circled"></span>
</a>
</li>
<li>
<a href="">
<span class="icon-linkedin-circled"></span>
</a>
</li>
</ul>
<div class="mask">
<h2>Uptime Advocate</h2>
<p>Josiah implements strategies for ensuring operational success in ventures supporting diverse business initiatives.</p>
</div>
</div>
</div>
</div>
<div class="about-text centered">
<h3>About Us</h3>
<p>Founded on a whim in 2012, Hackafé has grown to be a provider of technology services to more than one client, with a fierce dedication to satisfaction and client survival. With our satisfaction guaranteed on every project, no matter how small or insignificant, we ensure that your needs will be exceeded in most dimensions.</p>
</div>
<h3>Skills</h3>
<div class="row-fluid">
<div class="span6">
<ul class="skills">
<li>
<span class="bar" data-width="80%"></span>
<h3>Graphic Design</h3>
</li>
<li>
<span class="bar" data-width="95%"></span>
<h3>Html & Css</h3>
</li>
<li>
<span class="bar" data-width="68%"></span>
<h3>jQuery</h3>
</li>
<li>
<span class="bar" data-width="95%"></span>
<h3>Pneumatic Caffeine Delivery</h3>
</li>
<li>
<span class="bar" data-width="70%"></span>
<h3>Guerilla WiFi Deployment</h3>
</li>
<li>
<span class="bar" data-width="110%"></span>
<h3>Foam Projectile Warfare</h3>
</li>
</ul>
</div>
<div class="span6">
<div class="highlighted-box center">
<h1>We're Hiring</h1>
<p>Can you see yourself working for Hackafé? We are always looking for new talent! Send your resume, cover letter, and at least four recommendations by heads of state to [email protected]</p>
<button class="button button-sp">Join Us</button>
</div>
</div>
</div>
</div>
</div>
<!-- About us section end -->
<div class="section secondary-section">
<div class="triangle"></div>
<div class="container centered">
<p class="large-text">Hackafé products are guaranteed in all 48 contiguous states to the full extent of the law, and have been proven to be legal in a majority of court systems.</p>
<a href="#" class="button">Purshase now</a>
</div>
</div>
<!-- Client section start -->
<!-- Client section start -->
<div id="clients">
<div class="section primary-section">
<div class="triangle"></div>
<div class="container">
<div class="title">
<h1>What Do Our Clients Say?</h1>
<p>Duis mollis placerat quam, eget laoreet tellus tempor eu. Quisque dapibus in purus in dignissim.</p>
</div>
<div class="row">
<div class="span4">
<div class="testimonial">
<p>"I've worked too hard and too long to let anything stand in the way of my goals. I will not let my teammates down and I will not let myself down."</p>
<div class="whopic">
<div class="arrow"></div>
<img src="images/Client1.png" class="centered" alt="client 1">
<strong>John Doe
<small>Client</small>
</strong>
</div>
</div>
</div>
<div class="span4">
<div class="testimonial">
<p>"In motivating people, you've got to engage their minds and their hearts. I motivate people, I hope, by example - and perhaps by excitement, by having productive ideas to make others feel involved."</p>
<div class="whopic">
<div class="arrow"></div>
<img src="images/Client2.png" class="centered" alt="client 2">
<strong>John Doe
<small>Client</small>
</strong>
</div>
</div>
</div>
<div class="span4">
<div class="testimonial">
<p>"Determine never to be idle. No person will have occasion to complain of the want of time who never loses any. It is wonderful how much may be done if we are always doing."</p>
<div class="whopic">
<div class="arrow"></div>
<img src="images/Client3.png" class="centered" alt="client 3">
<strong>John Doe
<small>Client</small>
</strong>
</div>
</div>
</div>
</div>
<p class="testimonial-text">
"Perfection is Achieved Not When There Is Nothing More to Add, But When There Is Nothing Left to Take Away"
</p>
</div>
</div>
</div>
<div class="section third-section">
<div class="container centered">
<div class="sub-section">
<div class="title clearfix">
<div class="pull-left">
<h3>Our Clients</h3>
</div>
<ul class="client-nav pull-right">
<li id="client-prev"></li>
<li id="client-next"></li>
</ul>
</div>
<ul class="row client-slider" id="clint-slider">
<li>
<a href="">
<img src="images/clients/ClientLogo01.png" alt="client logo 1">
</a>
</li>
<li>
<a href="">
<img src="images/clients/ClientLogo02.png" alt="client logo 2">
</a>
</li>
<li>
<a href="">
<img src="images/clients/ClientLogo03.png" alt="client logo 3">
</a>
</li>
<li>
<a href="">
<img src="images/clients/ClientLogo04.png" alt="client logo 4">
</a>
</li>
<li>
<a href="">
<img src="images/clients/ClientLogo05.png" alt="client logo 5">
</a>
</li>
<li>
<a href="">
<img src="images/clients/ClientLogo02.png" alt="client logo 6">
</a>
</li>
<li>
<a href="">
<img src="images/clients/ClientLogo04.png" alt="client logo 7">
</a>
</li>
</ul>
</div>
</div>
</div>
<!-- Price section start -->
<div id="price" class="section secondary-section">
<div class="container">
<div class="title">
<h1>Price</h1>
<p>With a flexible pricing schedule, we are prepared to meet the needs of businesses of any size.</p>
</div>
<div class="price-table row-fluid">
<div class="span4 price-column">
<h3>Basic</h3>
<ul class="list">
<li class="price">$19,99</li>
<li><strong>Free</strong> Setup</li>
<li><strong>24/7</strong> Support</li>
<li><strong>5 GB</strong> File Storage</li>
</ul>
<a href="#" class="button button-ps">BUY</a>
</div>
<div class="span4 price-column">
<h3>Pro</h3>
<ul class="list">
<li class="price">$39,99</li>
<li><strong>Free</strong> Setup</li>
<li><strong>24/7</strong> Support</li>
<li><strong>40 MHz</strong> Bandwidth</li>
</ul>
<a href="#" class="button button-ps">BUY</a>
</div>
<div class="span4 price-column">
<h3>Premium</h3>
<ul class="list">
<li class="price">$79,99</li>
<li><strong>Free</strong> Setup</li>
<li><strong>24/7</strong> Support</li>
<li>Nearly <strong>Unlimited</strong> Printing</li>
</ul>
<a href="#" class="button button-ps">BUY</a>
</div>
</div>
<div class="centered">
<p class="price-text">We Offer Custom Plans. Contact Us For More Info.</p>
<a href="#contact" class="button">Contact Us</a>
</div>
</div>
</div>
<!-- Price section end -->
<!-- Newsletter section start -->
<div class="section third-section">
<div class="container newsletter">
<div class="sub-section">
<div class="title clearfix">
<div class="pull-left">
<h3>Free Spam</h3>
</div>
</div>
</div>
<div id="success-subscribe" class="alert alert-success invisible">
<strong>Well done!</strong>You successfully subscribed to our newsletter.</div>
<div class="row-fluid">
<div class="span5">
<p>We will fill your inbox every day with the latest in excellent products and services available from our broad network of collaborators!</p>
</div>
<div class="span7">
<form action="//ceca.us10.list-manage.com/subscribe/post?u=93c53aebd14896af588b33a52&id=238c67f1d9" method="post" id="mc-embedded-subscribe-form" name="mc-embedded-subscribe-form" class="validate inline-form" target="_blank" novalidate>
<input type="email" value="" name="EMAIL" class="span8 required email" id="mce-EMAIL">
<button type="submit" name="subscribe" id="mc-embedded-subscribe"class="button button-sp">Subscribe</button>
<div style="position: absolute; left: -5000px;"><input type="text" name="b_93c53aebd14896af588b33a52_238c67f1d9" tabindex="-1" value=""></div>
</div>
</form>
</div>
</div>
</div>
</div>
<!-- Newsletter section end -->
<!-- Contact section start -->
<div id="contact" class="contact">
<div class="section secondary-section">
<div class="container">
<div class="title">
<h1>Contact Us</h1>
<p>We are often available by phone or email to discuss your next big project.</p>
</div>
</div>
<div class="container">
<div class="span9 center contact-info">
<p class="info-mail">[email protected]</p>
<p>+1 240 808 2255</p>
<div class="title">
<h3>We Are Social</h3>
</div>
</div>
<div class="row-fluid centered">
<ul class="social">
<li>
<a href="">
<span class="icon-facebook-circled"></span>
</a>
</li>
<li>
<a href="">
<span class="icon-twitter-circled"></span>
</a>
</li>
<li>
<a href="">
<span class="icon-linkedin-circled"></span>
</a>
</li>
<li>
<a href="">
<span class="icon-pinterest-circled"></span>
</a>
</li>
<li>
<a href="">
<span class="icon-dribbble-circled"></span>
</a>
</li>
<li>
<a href="">
<span class="icon-gplus-circled"></span>
</a>
</li>
</ul>
</div>
</div>
</div>
</div>
<!-- Contact section edn -->
<!-- Footer section start -->
<div class="footer">
<p>© 2013 Theme by <a href="http://www.graphberry.com">GraphBerry</a>, <a href="http://goo.gl/NM84K2">Documentation</a></p>
</div>
<!-- Footer section end -->
<!-- ScrollUp button start -->
<div class="scrollup">
<a href="#">
<i class="icon-up-open"></i>
</a>
</div>
<!-- ScrollUp button end -->
<!-- Include javascript -->
<script src="js/jquery.js"></script>
<script type="text/javascript" src="js/jquery.mixitup.js"></script>
<script type="text/javascript" src="js/bootstrap.js"></script>
<script type="text/javascript" src="js/modernizr.custom.js"></script>
<script type="text/javascript" src="js/jquery.bxslider.js"></script>
<script type="text/javascript" src="js/jquery.cslider.js"></script>
<script type="text/javascript" src="js/jquery.placeholder.js"></script>
<script type="text/javascript" src="js/jquery.inview.js"></script>
<!-- Load google maps api and call initializeMap function defined in app.js -->
<script type="text/javascript" src="https://maps.googleapis.com/maps/api/js?sensor=false&callback=initializeMap"></script>
<!-- css3-mediaqueries.js for IE8 or older -->
<!--[if lt IE 9]>
<script src="js/respond.min.js"></script>
<![endif]-->
<script type="text/javascript" src="js/app.js"></script>
</body>
</html>