-
Notifications
You must be signed in to change notification settings - Fork 0
/
3.html
1084 lines (873 loc) · 53.4 KB
/
3.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
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
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html>
<head>
<title>Tech Tools Suite XL</title>
<meta charset="UTF-8">
<meta name="generator" content="Silex v2.2.7">
<!-- leave this for stats -->
<script type="text/javascript" src="//editor.silex.me/static/2.7/jquery.js" data-silex-static=""></script>
<script type="text/javascript" src="//editor.silex.me/static/2.7/jquery-ui.js" data-silex-static=""></script>
<script type="text/javascript" src="//editor.silex.me/static/2.7/pageable.js" data-silex-static=""></script>
<script type="text/javascript" src="//editor.silex.me/static/2.7/front-end.js" data-silex-static=""></script>
<!-- Normalize -->
<link href="//editor.silex.me/static/2.7/normalize.css" rel="stylesheet" data-silex-static="">
<!-- Silex style -->
<link href="//editor.silex.me/static/2.7/front-end.css" rel="stylesheet" data-silex-static="">
<style type="text/css" class="silex-style">
/*
Here are the CSS styles of your website.
Bellow are some examples, like the styles which you can apply to your text in the text editor.
See this page for help on CSS
https://developer.mozilla.org/en-US/docs/Web/Guide/CSS/Getting_started
In the advanced "Apollo" mode, you will be able to add CSS classes to Silex elements,
and then apply a CSS style to it here.
*/
/* define a style for Title, Headings and Normal texts */
.title,
.heading1,
.heading2,
.heading3,
.normal {
font-family: verdana, arial;
}
/* title style */
.title {}
.rotated {
-webkit-transform: rotate(45deg);
-moz-transform: rotate(45deg);
-ms-transform: rotate(45deg);
-o-transform: rotate(45deg);
transform: rotate(45deg);
}
.top-z {
z-index: 999;
}
.editable-style.full-width {
width: 100%;
}
.product-details .heading1 {
font-size: 24px;
text-transform: capitalize;
color: #ed5a3b;
margin: 0;
}
.product-details .normal {
color: #666666;
}
</style>
<script type="text/javascript" class="silex-script"></script>
<meta name="publicationPath" content="/api/1.0/github/exec/put/silex-templates/wip/tech-tools">
<style class="silex-inline-styles" type="text/css">
.silex-id-1439573540471-28 {
cursor: auto;
background-color: rgb(163, 163, 163);
}
.silex-id-1492793402523-5 {
background-color: transparent;
min-width: 800px;
}
.silex-id-1492793402523-4 {
width: 800px;
background-color: rgba(102, 102, 102, 1);
min-height: 100px;
top: 15px;
left: 726px;
}
.silex-id-1439573540164-25 {
width: 20px;
top: 89px;
left: 376px;
background-color: rgb(102, 102, 102);
min-height: 20px;
}
.silex-id-1439573539993-24 {
width: 28px;
top: 35px;
left: 25px;
min-height: 28px;
}
.silex-id-1439573539891-23 {
width: 172px;
top: 37px;
left: 60px;
background-color: transparent;
min-height: 44px;
}
.silex-id-1439573539452-22 {
width: 218px;
top: 15px;
left: 555px;
background-color: transparent;
min-height: 74px;
}
.silex-id-1492793481801-7 {
background-color: transparent;
min-width: 800px;
}
.silex-id-1492793481801-6 {
width: 800px;
background-color: rgba(237, 90, 59, 1);
min-height: 500px;
top: 15px;
left: 727px;
}
.silex-id-1439573537452-20 {
width: 20px;
top: 488px;
left: 376px;
background-color: rgb(237, 90, 59);
min-height: 20px;
}
.silex-id-1439573536451-19 {
width: 464px;
top: 60px;
left: 25px;
background-color: transparent;
min-height: 279px;
}
.silex-id-1439573276986-15 {
width: 371px;
top: 86px;
left: 428px;
min-height: 224px;
}
.silex-id-1492795510474-18 {
width: 436px;
background-color: transparent;
min-height: 136px;
top: 331px;
left: 177px;
}
.silex-id-1439573535453-18 {
width: 357px;
top: 13px;
left: 37px;
border-top-width: 2px;
border-right-width: 2px;
border-bottom-width: 2px;
border-left-width: 2px;
border-top-style: solid;
border-right-style: solid;
border-bottom-style: solid;
border-left-style: solid;
border-top-color: rgb(255, 255, 255);
border-right-color: rgb(255, 255, 255);
border-bottom-color: rgb(255, 255, 255);
border-left-color: rgb(255, 255, 255);
border-image-source: initial;
border-image-slice: initial;
border-image-width: initial;
border-image-outset: initial;
border-image-repeat: initial;
border-top-left-radius: 5px;
border-top-right-radius: 5px;
border-bottom-right-radius: 5px;
border-bottom-left-radius: 5px;
background-color: transparent;
min-height: 98px;
}
.silex-id-1439573534459-17 {
width: 95px;
top: 1px;
left: 28px;
background-color: transparent;
min-height: 93px;
}
.silex-id-1439573533566-16 {
width: 183px;
top: 7px;
left: 142px;
border-top-width: 0px;
border-right-width: 0px;
border-bottom-width: 0px;
border-left-width: 1px;
border-top-style: solid;
border-right-style: solid;
border-bottom-style: solid;
border-left-style: solid;
border-top-color: rgb(255, 255, 255);
border-right-color: rgb(255, 255, 255);
border-bottom-color: rgb(255, 255, 255);
border-left-color: rgb(255, 255, 255);
background-color: transparent;
line-height: 19px;
min-height: 87px;
}
.silex-id-1511792649220-9 {
width: 389px;
background-color: rgb(255, 255, 255);
min-height: 233px;
top: 73px;
left: 36px;
}
.silex-id-1492793748318-13 {
width: 37px;
min-height: 221px;
background-color: transparent;
top: 138px;
left: 26px;
}
.silex-id-1492793561474-9 {
background-color: transparent;
min-width: 800px;
}
.silex-id-1492793561473-8 {
width: 800px;
background-color: rgba(255, 255, 255, 1);
min-height: 387px;
top: 15px;
left: 647px;
}
.silex-id-1439573267988-6 {
width: 20px;
top: 377px;
left: 376px;
background-color: rgb(255, 255, 255);
min-height: 20px;
}
.silex-id-1492793856630-14 {
width: 369px;
background-color: transparent;
min-height: 148px;
top: 45px;
left: 21px;
}
.silex-id-1439573272985-11 {
width: 100px;
top: 0px;
left: 0px;
min-height: 100px;
}
.silex-id-1439573271990-10 {
width: 236px;
top: 0px;
left: 122px;
background-color: transparent;
min-height: 132px;
}
.silex-id-1492794657856-15 {
width: 370px;
background-color: transparent;
min-height: 140px;
top: 236px;
left: 21px;
}
.silex-id-1439573276011-14 {
width: 100px;
top: 0px;
left: 0px;
min-height: 100px;
}
.silex-id-1439573269990-8 {
width: 236px;
top: 0px;
left: 121px;
background-color: transparent;
min-height: 132px;
}
.silex-id-1492795298615-17 {
width: 370px;
background-color: transparent;
min-height: 141px;
top: 236px;
left: 420px;
}
.silex-id-1439573273989-12 {
width: 100px;
top: 0px;
left: 0px;
min-height: 86px;
}
.silex-id-1439573268988-7 {
width: 236px;
top: 0px;
left: 123px;
background-color: transparent;
min-height: 132px;
}
.silex-id-1492795290607-16 {
width: 370px;
background-color: transparent;
min-height: 150px;
top: 45px;
left: 420px;
}
.silex-id-1439573274988-13 {
width: 100px;
top: 0px;
left: 0px;
min-height: 101px;
}
.silex-id-1439573270988-9 {
width: 236px;
top: -5px;
left: 124px;
background-color: transparent;
min-height: 132px;
}
.silex-id-1492793650681-11 {
background-color: transparent;
min-width: 800px;
}
.silex-id-1492793650680-10 {
width: 800px;
background-color: rgba(53, 73, 94, 1);
min-height: 250px;
}
.silex-id-1439573265982-4 {
width: 367px;
top: 25px;
left: 25px;
background-color: transparent;
min-height: 210px;
}
.silex-id-1439573264982-3 {
width: 367px;
top: 25px;
left: 413px;
background-color: transparent;
min-height: 100px;
}
.silex-id-1492793700949-12 {
width: 180px;
min-height: 68px;
background-color: transparent;
top: 126px;
left: 604px;
}
</style>
<script type="text/javascript" class="silex-json-styles">
[{"desktop":{"silex-id-1439573540471-28":{"cursor":"auto","background-color":"rgb(163, 163, 163)"},"silex-id-1439573540164-25":{"width":"20px","top":"89px","left":"376px","background-color":"rgb(102, 102, 102)","min-height":"20px"},"silex-id-1439573539993-24":{"width":"28px","top":"35px","left":"25px","min-height":"28px"},"silex-id-1439573539891-23":{"width":"172px","top":"37px","left":"60px","background-color":"transparent","min-height":"44px"},"silex-id-1439573539452-22":{"width":"218px","top":"15px","left":"555px","background-color":"transparent","min-height":"74px"},"silex-id-1439573537452-20":{"width":"20px","top":"488px","left":"376px","background-color":"rgb(237, 90, 59)","min-height":"20px"},"silex-id-1439573536451-19":{"width":"464px","top":"60px","left":"25px","background-color":"transparent","min-height":"279px"},"silex-id-1439573535453-18":{"width":"357px","top":"13px","left":"37px","border-top-width":"2px","border-right-width":"2px","border-bottom-width":"2px","border-left-width":"2px","border-top-style":"solid","border-right-style":"solid","border-bottom-style":"solid","border-left-style":"solid","border-top-color":"rgb(255, 255, 255)","border-right-color":"rgb(255, 255, 255)","border-bottom-color":"rgb(255, 255, 255)","border-left-color":"rgb(255, 255, 255)","border-image-source":"initial","border-image-slice":"initial","border-image-width":"initial","border-image-outset":"initial","border-image-repeat":"initial","border-top-left-radius":"5px","border-top-right-radius":"5px","border-bottom-right-radius":"5px","border-bottom-left-radius":"5px","background-color":"transparent","min-height":"98px"},"silex-id-1439573534459-17":{"width":"95px","top":"1px","left":"28px","background-color":"transparent","min-height":"93px"},"silex-id-1439573533566-16":{"width":"183px","top":"7px","left":"142px","border-top-width":"0px","border-right-width":"0px","border-bottom-width":"0px","border-left-width":"1px","border-top-style":"solid","border-right-style":"solid","border-bottom-style":"solid","border-left-style":"solid","border-top-color":"rgb(255, 255, 255)","border-right-color":"rgb(255, 255, 255)","border-bottom-color":"rgb(255, 255, 255)","border-left-color":"rgb(255, 255, 255)","background-color":"transparent","line-height":"19px","min-height":"87px"},"silex-id-1439573276986-15":{"width":"371px","top":"86px","left":"428px","min-height":"224px"},"silex-id-1439573276011-14":{"width":"100px","top":"0px","left":"0px","min-height":"100px"},"silex-id-1439573274988-13":{"width":"100px","top":"0px","left":"0px","min-height":"101px"},"silex-id-1439573273989-12":{"width":"100px","top":"0px","left":"0px","min-height":"86px"},"silex-id-1439573272985-11":{"width":"100px","top":"0px","left":"0px","min-height":"100px"},"silex-id-1439573271990-10":{"width":"236px","top":"0px","left":"122px","background-color":"transparent","min-height":"132px"},"silex-id-1439573270988-9":{"width":"236px","top":"-5px","left":"124px","background-color":"transparent","min-height":"132px"},"silex-id-1439573269990-8":{"width":"236px","top":"0px","left":"121px","background-color":"transparent","min-height":"132px"},"silex-id-1439573268988-7":{"width":"236px","top":"0px","left":"123px","background-color":"transparent","min-height":"132px"},"silex-id-1439573267988-6":{"width":"20px","top":"377px","left":"376px","background-color":"rgb(255, 255, 255)","min-height":"20px"},"silex-id-1439573265982-4":{"width":"367px","top":"25px","left":"25px","background-color":"transparent","min-height":"210px"},"silex-id-1439573264982-3":{"width":"367px","top":"25px","left":"413px","background-color":"transparent","min-height":"100px"},"silex-id-1439573263985-2":{"width":"42px","top":"141px","left":"736px","min-height":"38px"},"silex-id-1439573262983-1":{"width":"18px","top":"139px","left":"687px","min-height":"38px"},"silex-id-1439573261942-0":{"width":"27px","top":"140px","left":"632px","min-height":"38px"},"silex-id-1492793402523-4":{"width":"800px","background-color":"rgba(102,102,102,1)","min-height":"100px","top":"15px","left":"726px"},"silex-id-1492793402523-5":{"background-color":"transparent","min-width":"800px"},"silex-id-1492793481801-6":{"width":"800px","background-color":"rgba(237,90,59,1)","min-height":"500px","top":"15px","left":"727px"},"silex-id-1492793481801-7":{"background-color":"transparent","min-width":"800px"},"silex-id-1492793561473-8":{"width":"800px","background-color":"rgba(255,255,255,1)","min-height":"387px","top":"15px","left":"647px"},"silex-id-1492793561474-9":{"background-color":"transparent","min-width":"800px"},"silex-id-1492793650680-10":{"width":"800px","background-color":"rgba(53,73,94,1)","min-height":"250px"},"silex-id-1492793650681-11":{"background-color":"transparent","min-width":"800px"},"silex-id-1492793700949-12":{"width":"180px","min-height":"68px","background-color":"transparent","top":"126px","left":"604px"},"silex-id-1492793748318-13":{"width":"37px","min-height":"221px","background-color":"transparent","top":"138px","left":"26px"},"silex-id-1492793856630-14":{"width":"369px","background-color":"transparent","min-height":"148px","top":"45px","left":"21px"},"silex-id-1492794657856-15":{"width":"370px","background-color":"transparent","min-height":"140px","top":"236px","left":"21px"},"silex-id-1492795290607-16":{"width":"370px","background-color":"transparent","min-height":"150px","top":"45px","left":"420px"},"silex-id-1492795298615-17":{"width":"370px","background-color":"transparent","min-height":"141px","top":"236px","left":"420px"},"silex-id-1492795510474-18":{"width":"436px","background-color":"transparent","min-height":"136px","top":"331px","left":"177px"},"silex-id-1511792649220-9":{"width":"389px","background-color":"rgb(255, 255, 255)","min-height":"233px","top":"73px","left":"36px"}},"mobile":{},"componentData":{"silex-id-1492793700949-12":{"name":"share1","templateName":"share","networks":["Facebook","Twitter","Google+","Tumblr","Email"],"style":"Flat Web Icon Set - Color","description":"Your site description"},"silex-id-1492793748318-13":{"name":"share1","templateName":"share","networks":["Facebook","Twitter","Google+","Tumblr","Email"],"style":"Flat Web Icon Set - Color","description":"Your site description"},"silex-id-1492793856630-14":{"name":"animated-container1","templateName":"animated-container","scale":"1"},"silex-id-1492794657856-15":{"name":"animated-container2","templateName":"animated-container","scale":"1","origin":"right"},"silex-id-1492795290607-16":{"name":"animated-container2","templateName":"animated-container","scale":"","origin":"right","distance":"0"},"silex-id-1492795298615-17":{"name":"animated-container2","templateName":"animated-container","scale":"1","origin":"right"},"silex-id-1492795510474-18":{"name":"animated-container2","templateName":"animated-container","scale":".1","origin":"left","distance":"10px","easing":"ease-in-out"}}}]
</script>
<script src="https://unpkg.com/scrollreveal/dist/scrollreveal.min.js" data-dependency=""></script>
<style id="current-page-style">
.page-page-1 {
display: inherit;
}
</style>
<!-- Silex HEAD tag do not remove -->
<meta charset=utf-8 />
<title>videojs-contrib-hls embed</title>
<link href="http://bhcast.com/video-js.css" rel="stylesheet">
<script src="http://bhcast.com/video.js"></script>
<script src="http://bhcast.com/videojs-contrib-hls.min.js"></script>
<!-- End of Silex HEAD tag do not remove -->
</head>
<body data-silex-type="container" class="silex-id-1439573540471-28 silex-runtime" data-silex-id="silex-id-1439573540471-28">
<div class="silex-pages">
<div data-silex-type="image" data-silex-id="silex-id-hamburger-menu" class="menu-button editable-style silex-id-hamburger-menu image-element page-page-1 paged-element prevent-draggable prevent-resizable"><img alt="open mobile menu" src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADIAAAAoCAYAAAC8cqlMAAAB5UlEQVR42u2ZPWvCUBSGM+UfFO3e3dLu/QN+oKj4EUXRQREEJYgoiCAu6qCogyDo7iJ21UUaKqEgCC4iiEMGB3UVgsnpTWj/wfVK2nvhGbKEPJyT996TMMzPGg6H5mKx+GgkyuWyeTQasb8OTDwef4tEIp8+n+/LYIjJZJJHQiwzm81M6OLDarWqNpsNjEYgEJCy2ewT0+/3TagighElNFAnQT6ft1ARKkJFqMgfFvF4PFpuEwFtdrcRqVarIIoirFYrIiyXSxiPx+B2u/GJBINBuF6vQHopigK1Wg2fCMdxcLlciIuoqgqNRgOfiN1uB3Qwg91uB8fjkQiHwwEmkwne1qLxS0VuKKJle71eh06nQ4Rmswk8z+MVcTqdsNlsQJZlotF7Pp8hk8ngE4lGo/qN7xG/vV4Pb0Xm8zlxkdPpBGgMx/+yJxIJKBQKRMjlcuBwOGhq/Q+RcDgMsViMCFrAuFwu/CKDwQC22y1IkkSE/X4PgiDo+xc2Ea0S9zjGa/Hb7Xbxifj9fj0K7yFSqVTwtlY6nYbpdKpPiSRYLBbQarX0PYymFhWhIlSEilCRW6GdyUqlkoVZr9dsKpXiOY6TtW+7BkNBz/7ebrcf9L+6Xq+XRYPMMyrTq5EIhUIvaAjTJb4BBNQ2yhnth0wAAAAASUVORK5CYII="
class="silex-element-content"></div><a id="page-page-1" data-silex-type="page" class="page-element page-link-active">Page 1</a></div>
<div data-silex-type="container" class="prevent-draggable container-element editable-style silex-id-1492793402523-5 section-element" data-silex-id="silex-id-1492793402523-5">
<div data-silex-type="container" class="editable-style silex-id-1492793402523-4 container-element silex-element-content silex-container-content website-width prevent-draggable" data-silex-id="silex-id-1492793402523-4">
<div data-silex-type="container" class="editable-style container-element rotated top-z silex-id-1439573540164-25" data-silex-id="silex-id-1439573540164-25"></div>
<div data-silex-type="image" class="editable-style image-element silex-id-1439573539993-24" data-silex-id="silex-id-1439573539993-24"><img src="../../../../../../../libs/templates/silex-templates/tech-tools/assets/feed-icon-14x14.png" class="silex-element-content">
</div>
<div data-silex-type="text" class="editable-style text-element silex-id-1439573539891-23" data-silex-id="silex-id-1439573539891-23">
<div class="silex-element-content normal">
<header>
<font face="verdana, sans-serif" class="title" color="#ffffff" size="5">Tech<b>Team</b></font>
</header>
</div>
</div>
<div data-silex-type="text" class="editable-style text-element silex-id-1439573539452-22" data-silex-id="silex-id-1439573539452-22">
<div class="silex-element-content normal">
<p class="normal"></p>
<div style="text-align: right;"><span style="color: rgb(255, 255, 255); font-family: verdana, sans-serif; font-size: large;">800.5555.6789</span>
</div>
<font face="verdana, sans-serif" class="normal" color="#cccccc">
<a href="mailto:[email protected]">
</a>
<div style="text-align: right;"><a href="mailto:[email protected]">[email protected]</a></div>
</font>
<p class="normal"></p>
</div>
</div>
</div>
</div>
<div data-silex-type="container" class="prevent-draggable container-element editable-style silex-id-1492793481801-7 section-element" data-silex-id="silex-id-1492793481801-7">
<div data-silex-type="container" class="editable-style silex-id-1492793481801-6 container-element silex-element-content silex-container-content website-width prevent-draggable" data-silex-id="silex-id-1492793481801-6">
<div data-silex-type="container" class="editable-style container-element rotated top-z silex-id-1439573537452-20" data-silex-id="silex-id-1439573537452-20"></div>
<div data-silex-type="text" class="editable-style text-element silex-id-1439573536451-19" data-silex-id="silex-id-1439573536451-19">
<div class="silex-element-content normal">
<h1 class="heading1">
<font color="#ffffff"><span style="font-weight: normal;">Tech</span>Tools<span style="font-weight: normal;"> Suite XL</span></font>
</h1>
<div>
<font color="#ffffff">
<p class="normal">
<font size="5" style="font-weight: normal;">Lorem ipsum dolor sit amet</font>
<font size="5"> luctus</font><span style="font-weight: normal; font-size: x-large;">, <br></span><span style="font-size: x-large;">con se consecteteur </span>
<span style="font-size: x-large;">ipsum potenti</span><span style="font-size: x-large;">. </span>
</p>
</font>
<font color="#ffffff">
<p class="normal" style="font-weight: normal;">+ Id amet fringilla quam dui nec. </p>
<p class="normal" style="font-weight: normal;">+ Sollicitudin blandit. </p>
<p class="normal" style="font-weight: normal;">+ Consequat bibendum tempor adipiscing. </p>
</font>
</div>
</div>
</div>
<div data-silex-type="image" class="editable-style image-element silex-id-1439573276986-15" data-silex-id="silex-id-1439573276986-15"><img src="../../../../../../../libs/templates/silex-templates/tech-tools/assets/macbook-silex.png" class="silex-element-content">
</div>
<div data-silex-type="container" class="editable-style container-element silex-component silex-component-animated-container silex-id-1492795510474-18" data-silex-id="silex-id-1492795510474-18">
<div id="id_1492795668403_831"></div>
<script type="text/javascript">
/*
animation widget from here: https://github.com/silexlabs/Silex/issues/443
*/
$(function() {
var bodyEl = $('body');
// execute only outside silex editor
if(!bodyEl.hasClass('silex-runtime')) return;
// init ScrollReveal lib
window.sr = window.sr || ScrollReveal();
// animate this element on page change
bodyEl.on('pageChanged', animate_1492795668403_831);
// animate this element at start
animate_1492795668403_831();
// the function to start the animation
function animate_1492795668403_831 (event, pageName) {
// get the silex element in which we are
var silexElement = $('#id_1492795668403_831').parent();
if(// only if the element is in the dom
silexElement &&
// and is visible in the current page
(silexElement.hasClass(bodyEl.pageable('option').currentPage) ||
// or visible in all pages
!silexElement.hasClass('paged-element')) &&
// but never in mobile mode
(!bodyEl.hasClass('enable-mobile') || $(window).width() >= 480)) {
// use ScrollReveal API
sr.reveal(silexElement, {
origin: 'left',
distance: '10px',
duration: 500,
delay: 0,
rotate: { x: 0, y: 0, z: 0 },
opacity: 0,
scale: .1,
easing: 'ease-in-out',
reset: false,
beforeReveal: function(el){
},
beforeReset: function(el){
},
afterReveal: function(el){
},
afterReset: function(el){
}
});
}
}
})
</script>
<div data-silex-type="container" class="editable-style container-element silex-id-1439573535453-18" data-silex-id="silex-id-1439573535453-18">
<div data-silex-type="text" class="editable-style text-element silex-id-1439573534459-17" data-silex-id="silex-id-1439573534459-17">
<div class="silex-element-content normal">
<h2 class="heading2">
<font size="4" style="font-weight: normal; color: rgb(255, 255, 255);">$</font>
<font style="color: rgb(255, 255, 255);" size="7">99</font>
</h2>
</div>
</div>
<div data-silex-type="text" class="editable-style text-element silex-id-1439573533566-16" data-silex-id="silex-id-1439573533566-16">
<div class="silex-element-content normal">
<blockquote style="margin: 0 0 0 40px; border: none; padding: 0px;">
<h1 class="heading1">
<font size="4" style="font-weight: normal; color: rgb(255, 255, 255);">Turpis class vestibulum in.</font>
</h1>
</blockquote>
<div>
<font color="#ffffff">
<h2 style="font-weight: normal;"><span class="heading2">
</span>
</h2>
</font>
</div>
</div>
</div>
</div>
</div>
<div data-silex-type="html" class="editable-style silex-id-1511792649220-9 html-element" data-silex-id="silex-id-1511792649220-9" style="">
<div class="silex-element-content">
<h1>Video.js Example Embed</h1>
<video id="my_video_1" class="video-js vjs-default-skin" controls="" preload="auto" width="640" height="268" data-setup="{}">
<source src="http://bhcast.com/live/test1/index.m3u8" type="application/x-mpegURL">
</video>
<script>
</script>
</div>
</div>
</div>
<div data-silex-type="html" class="editable-style html-element silex-component silex-component-share silex-id-1492793748318-13" data-silex-id="silex-id-1492793748318-13">
<div class="silex-element-content">
<ul class="share-buttons" id="id_1495976136066_628">
<li>
<a href="https://www.facebook.com/sharer/sharer.php?u=//yoursite.com&t=Your%20site%20title" title="Share on Facebook" target="_blank"><img alt="Share on Facebook" data-silex-static="" src="//editor.silex.me/static/2.7/simplesharingbuttons/flat_web_icon_set/color/Facebook.png"></a>
</li>
<li>
<a href="https://twitter.com/intent/tweet?source=//yoursite.com&text=Your%20site%20title:%20http://yoursite.com&via=silexlabs" target="_blank" title="Share on Twitter"><img alt="Twitt" data-silex-static="" src="//editor.silex.me/static/2.7/simplesharingbuttons/flat_web_icon_set/color/Twitter.png"></a>
</li>
<li>
<a href="https://plus.google.com/share?url=http://yoursite.com" target="_blank" title="Share on Google+"><img alt="Share on Google+" data-silex-static="" src="//editor.silex.me/static/2.7/simplesharingbuttons/flat_web_icon_set/color/Google%2B.png"></a>
</li>
<li>
<a href="http://www.tumblr.com/share?v=3&u=http://yoursite.com&t=Your%20site%20title&s=" target="_blank" title="Post to Tumblr"><img alt="Post to Tumblr" data-silex-static="" src="//editor.silex.me/static/2.7/simplesharingbuttons/flat_web_icon_set/color/Tumblr.png"></a>
</li>
<li>
<a href="mailto:?subject=Your%20site%20title&body=Your%20site%20description:%20http://yoursite.com" target="_blank" title="Send email"><img alt="Send by email" data-silex-static="" src="//editor.silex.me/static/2.7/simplesharingbuttons/flat_web_icon_set/color/Email.png"></a>
</li>
</ul>
<style type="text/css">
#id_1495976136066_628.share-buttons {
list-style: none;
padding: 0;
}
#id_1495976136066_628.share-buttons li {
display: inline;
}
#id_1495976136066_628.share-buttons .sr-only {
position: absolute;
clip: rect(1px 1px 1px 1px);
clip: rect(1px, 1px, 1px, 1px);
padding: 0;
border: 0;
height: 1px;
width: 1px;
overflow: hidden;
}
</style>
</div>
</div>
</div>
<div data-silex-type="container" class="prevent-draggable container-element editable-style silex-id-1492793561474-9 section-element" data-silex-id="silex-id-1492793561474-9">
<div data-silex-type="container" class="editable-style silex-id-1492793561473-8 container-element silex-element-content silex-container-content website-width prevent-draggable" data-silex-id="silex-id-1492793561473-8">
<div data-silex-type="container" class="editable-style container-element rotated top-z silex-id-1439573267988-6" data-silex-id="silex-id-1439573267988-6"></div>
<div data-silex-type="container" class="editable-style silex-id-1492793856630-14 container-element silex-component silex-component-animated-container" data-silex-id="silex-id-1492793856630-14">
<div id="id_1492794572760_738"></div>
<script type="text/javascript">
/*
animation widget from here: https://github.com/silexlabs/Silex/issues/443
*/
$(function() {
var bodyEl = $('body');
// execute only outside silex editor
if(!bodyEl.hasClass('silex-runtime')) return;
// init ScrollReveal lib
window.sr = window.sr || ScrollReveal();
// animate this element on page change
bodyEl.on('pageChanged', animate_1492794572760_738);
// animate this element at start
animate_1492794572760_738();
// the function to start the animation
function animate_1492794572760_738 (event, pageName) {
// get the silex element in which we are
var silexElement = $('#id_1492794572760_738').parent();
if(// only if the element is in the dom
silexElement &&
// and is visible in the current page
(silexElement.hasClass(bodyEl.pageable('option').currentPage) ||
// or visible in all pages
!silexElement.hasClass('paged-element')) &&
// but never in mobile mode
(!bodyEl.hasClass('enable-mobile') || $(window).width() >= 480)) {
// use ScrollReveal API
sr.reveal(silexElement, {
origin: 'left',
distance: '20px',
duration: 500,
delay: 0,
rotate: { x: 0, y: 0, z: 0 },
opacity: 0,
scale: 1,
easing: 'linear',
reset: false,
beforeReveal: function(el){
},
beforeReset: function(el){
},
afterReveal: function(el){
},
afterReset: function(el){
}
});
}
}
})
</script>
<div data-silex-type="image" class="editable-style image-element page-page-1 paged-element silex-id-1439573272985-11" data-silex-id="silex-id-1439573272985-11"><img src="../../../../../../../libs/templates/silex-templates/tech-tools/assets/picto3.png" class="silex-element-content">
</div>
<div data-silex-type="text" class="editable-style text-element page-page-1 paged-element product-details silex-id-1439573271990-10" data-silex-id="silex-id-1439573271990-10">
<div class="silex-element-content normal">
<h1 class="heading1">Lorem ipsum</h1>
<p class="normal">Morbi cursus curae tellus tempus quis, pede cursus ut urna nascetur dolor. </p>
<h2 class="heading2"></h2>
</div>
</div>
</div>
<div data-silex-type="container" class="editable-style silex-id-1492794657856-15 container-element silex-component silex-component-animated-container" data-silex-id="silex-id-1492794657856-15">
<div id="id_1492794695441_726"></div>
<script type="text/javascript">
/*
animation widget from here: https://github.com/silexlabs/Silex/issues/443
*/
$(function() {
var bodyEl = $('body');
// execute only outside silex editor
if(!bodyEl.hasClass('silex-runtime')) return;
// init ScrollReveal lib
window.sr = window.sr || ScrollReveal();
// animate this element on page change
bodyEl.on('pageChanged', animate_1492794695441_726);
// animate this element at start
animate_1492794695441_726();
// the function to start the animation
function animate_1492794695441_726 (event, pageName) {
// get the silex element in which we are
var silexElement = $('#id_1492794695441_726').parent();
if(// only if the element is in the dom
silexElement &&
// and is visible in the current page
(silexElement.hasClass(bodyEl.pageable('option').currentPage) ||
// or visible in all pages
!silexElement.hasClass('paged-element')) &&
// but never in mobile mode
(!bodyEl.hasClass('enable-mobile') || $(window).width() >= 480)) {
// use ScrollReveal API
sr.reveal(silexElement, {
origin: 'left',
distance: '20px',
duration: 500,
delay: 0,
rotate: { x: 0, y: 0, z: 0 },
opacity: 0,
scale: 1,
easing: 'linear',
reset: false,
beforeReveal: function(el){
},
beforeReset: function(el){
},
afterReveal: function(el){
},
afterReset: function(el){
}
});
}
}
})
</script>
<div data-silex-type="image" class="editable-style image-element page-page-1 paged-element silex-id-1439573276011-14" data-silex-id="silex-id-1439573276011-14"><img src="../../../../../../../libs/templates/silex-templates/tech-tools/assets/back.png" class="silex-element-content">
</div>
<div data-silex-type="text" class="editable-style text-element product-details page-page-1 paged-element silex-id-1439573269990-8" data-silex-id="silex-id-1439573269990-8">
<div class="silex-element-content normal">
<h1 class="heading1">Ornare</h1>
<p class="normal">Donec auctor ac litora fusce. Nam sem blandit nulla, netus. </p>
<h2 class="heading2"></h2>
</div>
</div>
</div>
<div data-silex-type="container" class="editable-style container-element silex-component silex-component-animated-container silex-id-1492795298615-17" data-silex-id="silex-id-1492795298615-17">
<div id="id_1492795298615_178"></div>
<script type="text/javascript">
/*
animation widget from here: https://github.com/silexlabs/Silex/issues/443
*/
$(function() {
var bodyEl = $('body');
// execute only outside silex editor
if(!bodyEl.hasClass('silex-runtime')) return;
// init ScrollReveal lib
window.sr = window.sr || ScrollReveal();
// animate this element on page change
bodyEl.on('pageChanged', animate_1492795298615_178);
// animate this element at start
animate_1492795298615_178();
// the function to start the animation
function animate_1492795298615_178 (event, pageName) {
// get the silex element in which we are
var silexElement = $('#id_1492795298615_178').parent();
if(// only if the element is in the dom
silexElement &&
// and is visible in the current page
(silexElement.hasClass(bodyEl.pageable('option').currentPage) ||
// or visible in all pages
!silexElement.hasClass('paged-element')) &&
// but never in mobile mode
(!bodyEl.hasClass('enable-mobile') || $(window).width() >= 480)) {
// use ScrollReveal API
sr.reveal(silexElement, {
origin: 'right',
distance: '20px',
duration: 500,
delay: 0,
rotate: { x: 0, y: 0, z: 0 },
opacity: 0,
scale: 1,
easing: 'linear',
reset: false,
beforeReveal: function(el){
},
beforeReset: function(el){
},
afterReveal: function(el){
},
afterReset: function(el){
}
});
}
}
})
</script>
<div data-silex-type="image" class="editable-style image-element page-page-1 paged-element silex-id-1439573273989-12" data-silex-id="silex-id-1439573273989-12"><img src="../../../../../../../libs/templates/silex-templates/tech-tools/assets/picto2.png" class="silex-element-content">
</div>
<div data-silex-type="text" class="editable-style text-element product-details page-page-1 paged-element silex-id-1439573268988-7" data-silex-id="silex-id-1439573268988-7">
<div class="silex-element-content normal">
<h1 class="heading1">Magna augue</h1>
<p class="normal">Sit risus gravida tempor, ut erat aliquam donec est proin. Leo erat class. </p>
<h2 class="heading2"></h2>
</div>
</div>
</div>
<div data-silex-type="container" class="editable-style container-element silex-component silex-component-animated-container silex-id-1492795290607-16" data-silex-id="silex-id-1492795290607-16">
<div id="id_1492795296610_886"></div>
<script type="text/javascript">
/*
animation widget from here: https://github.com/silexlabs/Silex/issues/443
*/
$(function() {
var bodyEl = $('body');
// execute only outside silex editor
if(!bodyEl.hasClass('silex-runtime')) return;
// init ScrollReveal lib
window.sr = window.sr || ScrollReveal();
// animate this element on page change
bodyEl.on('pageChanged', animate_1492795296610_886);
// animate this element at start
animate_1492795296610_886();
// the function to start the animation
function animate_1492795296610_886 (event, pageName) {
// get the silex element in which we are
var silexElement = $('#id_1492795296610_886').parent();
if(// only if the element is in the dom
silexElement &&
// and is visible in the current page
(silexElement.hasClass(bodyEl.pageable('option').currentPage) ||
// or visible in all pages
!silexElement.hasClass('paged-element')) &&
// but never in mobile mode
(!bodyEl.hasClass('enable-mobile') || $(window).width() >= 480)) {
// use ScrollReveal API
sr.reveal(silexElement, {
origin: 'right',
distance: '20px',
duration: 500,
delay: 0,
rotate: { x: 0, y: 0, z: 0 },
opacity: 0,
scale: 1,
easing: 'linear',
reset: false,
beforeReveal: function(el){
},
beforeReset: function(el){
},
afterReveal: function(el){
},
afterReset: function(el){
}
});
}
}
})
</script>
<div data-silex-type="image" class="editable-style image-element page-page-1 paged-element silex-id-1439573274988-13" data-silex-id="silex-id-1439573274988-13"><img src="../../../../../../../libs/templates/silex-templates/tech-tools/assets/picto1.png" class="silex-element-content">
</div>
<div data-silex-type="text" class="editable-style text-element product-details page-page-1 paged-element silex-id-1439573270988-9" data-silex-id="silex-id-1439573270988-9">
<div class="silex-element-content normal">
<h1 class="heading1">Erat turpis </h1>
<p class="normal">Cum quis in fringilla duis, euismod pretium nisl id vehicula euismod. </p>
<h2 class="heading2"></h2>
</div>
</div>
</div>
</div>
</div>
<div data-silex-type="container" class="prevent-draggable container-element editable-style silex-id-1492793650681-11 section-element" data-silex-id="silex-id-1492793650681-11">
<div data-silex-type="container" class="editable-style silex-id-1492793650680-10 container-element silex-element-content silex-container-content website-width prevent-draggable" data-silex-id="silex-id-1492793650680-10">
<div data-silex-type="text" class="editable-style text-element silex-id-1439573265982-4" data-silex-id="silex-id-1439573265982-4">
<div class="silex-element-content normal">
<header>
<font face="verdana, sans-serif" class="title" color="#ffffff" size="5">About Tech<b>Team</b></font>
</header>
<header>
<font face="verdana, sans-serif" class="title" color="#ffffff" size="2"><span style="color: rgb(204, 204, 204);"><br></span></font>
</header>
<header>
<font face="verdana, sans-serif" class="title" color="#ffffff" size="2"><span style="color: rgb(204, 204, 204);">Lorem. Platea nisi. Pellentesque blandit sociosqu semper ornare. Arcu, tristique molestie taciti taciti hac, enim orci facilisi. Urna. Cras. Aptent dignissim donec id. Rutrum a vestibulum nam, dolor blandit maecenas nulla quam lacus quis. A purus eu taciti eleifend eget, porttitor consectetuer parturient orci fusce. Class adipiscing.</span></font>
</header>
</div>
</div>
<div data-silex-type="text" class="editable-style text-element silex-id-1439573264982-3" data-silex-id="silex-id-1439573264982-3">
<div class="silex-element-content normal">
<header style="text-align: right;">
<font color="#ffffff" face="verdana, sans-serif" size="5">Contact Us</font>
</header>
<header style="text-align: right;">
<font face="verdana, sans-serif" class="title" color="#ffffff" size="2"><span style="color: rgb(204, 204, 204);"><br></span></font>
</header>
<header>
<header style="text-align: right;">
<font color="#cccccc" face="verdana, sans-serif" size="2">800.5555.6789</font>
</header>
<header style="text-align: right;">
<font face="verdana, sans-serif" size="2" color="#cccccc"><a href="mailto:[email protected]">[email protected]</a></font>
</header>
</header>
</div>