-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
895 lines (794 loc) · 45.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
<!DOCTYPE html>
<html>
<head>
<title>B2RSports</title>
<!-- Google Tag Manager -->
<script>
(function(w, d, s, l, i) {
w[l] = w[l] || [];
w[l].push({
'gtm.start': new Date().getTime(),
event: 'gtm.js'
});
var f = d.getElementsByTagName(s)[0],
j = d.createElement(s),
dl = l != 'dataLayer' ? '&l=' + l : '';
j.async = true;
j.src =
'https://www.googletagmanager.com/gtm.js?id=' + i + dl;
f.parentNode.insertBefore(j, f);
})(window, document, 'script', 'dataLayer', 'GTM-TTMW27R');
</script>
<!-- End Google Tag Manager -->
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://www.w3schools.com/w3css/4/w3.css">
<link rel="stylesheet" href="https://www.w3schools.com/lib/w3-theme-black.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<link rel="stylesheet" href="styles.css">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="styles.css">
<script src="http://code.jquery.com/jquery-latest.min.js" type="text/javascript"></script>
<script src="script.js"></script>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-116547076-1"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() {
dataLayer.push(arguments);
}
gtag('js', new Date());
gtag('config', 'UA-116547076-1');
</script>
<style>
.zoom {
transition: transform .2s;
}
.zoom:hover {
transform: scale(1.5);
}
.times {
font-family: TimesNewRoman, Times New Roman, Times, Baskerville, Georgia, serif;
font-size: '20px';
}
.font {
font-size: 14px;
}
</style>
</head>
<body id="myPage">
<!-- Google Tag Manager (noscript) -->
<noscript><iframe src="https://www.googletagmanager.com/ns.html?id=GTM-TTMW27R"
height="0" width="0" style="display:none;visibility:hidden"></iframe></noscript>
<!-- End Google Tag Manager (noscript) -->
<!-- Sidebar on click -->
<!-- Navbar -->
<div class="w3-top">
<div class="w3-bar w3-theme-d1 w3-left-align">
<a class="w3-bar-item w3-button w3-hide-medium w3-hide-large w3-right w3-hover-white w3-theme-d2" href="javascript:void(0);" onclick="openNav()"><i class="fa fa-bars"></i></a>
<a href="#" class="w3-bar-item w3-button w3-teal"><i class="fa fa-home w3-margin-right"></i>Home</a>
<!--<a href="#pricing" class="w3-bar-item w3-button w3-hide-small w3-hover-white">Apparel</a>-->
<!-- <a href="#work" class="w3-bar-item w3-button w3-hide-small w3-hover-white">Mission</a>-->
<div class="w3-dropdown-hover w3-hide-small">
<button class="w3-button" title="Notifications">About Us <i class="fa fa-caret-down"></i></button>
<div class="w3-dropdown-content w3-card-4 w3-bar-block">
<a href="#Mission" class="w3-bar-item w3-button">Mission</a>
<a href="#contact" class="w3-bar-item w3-button">Contact Us/Special Orders</a>
</div>
</div>
<!-- <a href="#team" class="w3-bar-item w3-button w3-hide-small w3-hover-white">Team</a>
<a href="#contact" class="w3-bar-item w3-button w3-hide-small w3-hover-white">Contact</a>-->
<div class="w3-dropdown-hover w3-hide-small">
<button class="w3-button" title="Notifications">Countries <i class="fa fa-caret-down"></i></button>
<div class="w3-dropdown-content w3-card-4 w3-bar-block">
<a href="#Egypt" class="w3-bar-item w3-button">Egypt</a>
<a href="#England" class="w3-bar-item w3-button">England</a>
<a href="#France" class="w3-bar-item w3-button">France</a>
<a href="#Germany" class="w3-bar-item w3-button">Germany</a>
<a href="#Iceland" class="w3-bar-item w3-button">Iceland</a>
<a href="#Mexico" class="w3-bar-item w3-button">Mexico</a>
<a href="#Portugal" class="w3-bar-item w3-button">Portugal</a>
</div>
</div>
<form target="paypal" action="https://www.paypal.com/cgi-bin/webscr" method="post">
<input type="hidden" name="cmd" value="_s-xclick">
<input type="hidden" name="encrypted" value="-----BEGIN PKCS7-----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-----END PKCS7-----
">
<input type="submit" src="" border="0" value="View Cart" name="submit" alt="PayPal - The safer, easier way to pay online!" class="w3-bar-item w3-button">
<!--<img alt="" border="0" src="https://www.paypalobjects.com/en_US/i/scr/pixel.gif" width="1" height="1">-->
</form>
</div>
<!-- <a href="#" class="w3-bar-item w3-button w3-hide-small w3-right w3-hover-teal" title="Search"><i class="fa fa-search"></i></a>-->
</div>
<!-- Navbar on small screens -->
<div class="w3-top">
<div class="w3-bar w3-theme-d1 w3-left-align">
<a class="w3-bar-item w3-button w3-hide-medium w3-hide-large w3-right w3-hover-white w3-theme-d2" href="javascript:void(0);" onclick="openNav()"><i class="fa fa-bars"></i></a>
<div id="navDemo" class="w3-bar-block w3-theme-d2 w3-hide w3-hide-large w3-hide-medium">
<!--<a href="#pricing" class="w3-bar-item w3-button">Apparel</a>-->
<a href="#Mission" class="w3-bar-item w3-button">Mission</a>
<a href="#contact" class="w3-bar-item w3-button">Contact Us/Special Orders</a>
<a href="#Egypt" class="w3-bar-item w3-button">Egypt</a>
<a href="#England" class="w3-bar-item w3-button">England</a>
<a href="#France" class="w3-bar-item w3-button">France</a>
<a href="#Germany" class="w3-bar-item w3-button">Germany</a>
<a href="#Iceland" class="w3-bar-item w3-button">Iceland</a>
<a href="#Mexico" class="w3-bar-item w3-button">Mexico</a>
<a href="#Portugal" class="w3-bar-item w3-button">Portugal</a>
<form target="paypal" action="https://www.paypal.com/cgi-bin/webscr" method="post">
<input type="hidden" name="cmd" value="_s-xclick">
<input type="hidden" name="encrypted" value="-----BEGIN PKCS7-----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-----END PKCS7-----
">
<input type="submit" src="" border="0" value="View Cart" name="submit" alt="PayPal - The safer, easier way to pay online!" class="w3-bar-item w3-button">
<!--<img alt="" border="0" src="https://www.paypalobjects.com/en_US/i/scr/pixel.gif" width="1" height="1">-->
</form>
<!--<button class="w3-button" title="Notifications" target="choices">Countries <i class="fa fa-caret-down"></i></button>
<div class="w3-dropdown-content w3-card-4 w3-bar-block w3-hide-small" id="choices">
<a href="#Mexico" class="w3-bar-item w3-button">Mexico</a>
<a href="#France" class="w3-bar-item w3-button">France</a>
<a href="#Germany" class="w3-bar-item w3-button">Germany</a>
<a href="#England" class="w3-bar-item w3-button">England</a>
<a href="#Iceland" class="w3-bar-item w3-button">Iceland</a>
</div>-->
<!--<a href="#" class="w3-bar-item w3-button">Search</a>-->
</div>
</div>
</div>
<!-- Image Header -->
<div class="w3-display-container w3-animate-opacity">
<img src="images/b2rbanner.png" alt="field" style="width:100%;min-height:350px;max-height:600px;">
<!-- <div class="w3-container w3-display-bottomleft w3-margin-bottom">
<button onclick="document.getElementById('id01').style.display='block'" class="w3-button w3-xlarge w3-theme w3-hover-teal" title="Go To W3.CSS">Back2RootSports</button>
</div> -->
</div>
<!-- Modal -->
<!-- Pricing Row -->
<div class="w3-half w3-row-padding w3-left w3-padding-32" id="Egypt">
<div class="Times">
<h2>Egypt</h2> </div>
<h3>“Simply Revolutionary.” </h3>
<p>Mohamed Salah is about to wrap up what has been one of the biggest breakout seasons in recent memory. Now, he looks to lead both Liverpool and the country of Egypt to tournament success in the Champions League Finals and the 2018 World Cup. Order
your Americans for Egypt shirt today!</p>
<div class=" w3-margin-bottom">
<ul class="w3-ul w3-border w3-hover-shadow">
<li class="w3-theme">
<p class="w3-xlarge">Americans for Egypt Uncle Sam Short Sleeve</p>
</li>
<li class="w3-padding-16"><b>Sizes:</b> S, M, L, XL, 2XL, 3XL</li>
<li class="w3-padding-16"><b>Colors:</b> White </li>
<a href="Americans for Egypt Sam SS.html" target="_blank">
<li class="w3-padding-16 w3-center">
<div><img src="images/Americans for Egypt Sam SS.PNG" alt="CEO" width="250px" height="300px" class="w3-round">
<img src="images/Americans for Egypt Sam SS (back).PNG" alt="CEO" width="250px" height="300px" class="w3-round"></div>
</li>
</a>
<li class="w3-theme-l5 w3-padding-24">
<form target="paypal" action="https://www.paypal.com/cgi-bin/webscr" method="post">
<input type="hidden" name="cmd" value="_s-xclick">
<input type="hidden" name="hosted_button_id" value="2WG5S5PHZT5E8">
<table>
<tr>
<td><input type="hidden" name="on0" value="Sizes">Sizes</td>
</tr>
<tr>
<td><select name="os0">
<option value="S">S $24.99 USD</option>
<option value="M">M $24.99 USD</option>
<option value="L">L $24.99 USD</option>
<option value="XL">XL $27.99 USD</option>
<option value="2XL">2XL $27.99 USD</option>
<option value="3XL">3XL $27.99 USD</option>
</select> </td>
</tr>
</table>
<input type="hidden" name="currency_code" value="USD">
<input type="image" src="https://www.paypalobjects.com/en_US/i/btn/btn_cart_LG.gif" border="0" name="submit" alt="PayPal - The safer, easier way to pay online!">
<img alt="" border="0" src="https://www.paypalobjects.com/en_US/i/scr/pixel.gif" width="1" height="1">
</form>
<!-- <button class="w3-button w3-teal w3-padding-large"><i class="fa fa-check"></i> Add to Cart</button> -->
</li>
</ul>
</div>
</div>
<div class="w3-half w3-row-padding w3-left w3-padding-32" id="England">
<div class="Times">
<h2>England</h2> </div>
<h3>“Let Freedom Ring, God Save The Queen.” </h3>
<p>Our oldest rival, but one of our closest friends. Our history with England is long and rich, just like their history with football. Show your support for them in this world cup by sporting one of our Americans for England T's. Order yours today!</p>
<br>
<div class="w3-margin-bottom">
<ul class="w3-ul w3-border w3-hover-shadow">
<li class="w3-theme">
<p class="w3-xlarge">Americans for England Uncle Sam Short Sleeve</p>
</li>
<li class="w3-padding-16"><b>Sizes:</b> S, M, L, XL, 2XL, 3XL</li>
<li class="w3-padding-16"><b>Colors:</b> White </li>
<a href="Americans for England Sam SS.html" target="_blank">
<li class="w3-padding-16 w3-center">
<div><img src="images/Americans for England Sam SS.PNG" alt="CEO" width="250px" height="300px" class="w3-round">
<img src="images/Americans for England Sam SS (back).PNG" alt="CEO" width="250px" height="300px" class="w3-round"></div>
</li>
</a>
<!--<li class="w3-padding-16">
<h2 class="w3-wide"><i class="fa fa-usd"></i> 10</h2>
<span class="w3-opacity"></span>
</li>-->
<li class="w3-theme-l5 w3-padding-24">
<form target="paypal" action="https://www.paypal.com/cgi-bin/webscr" method="post">
<input type="hidden" name="cmd" value="_s-xclick">
<input type="hidden" name="hosted_button_id" value="BE2S5Z43E38CL">
<table>
<tr>
<td><input type="hidden" name="on0" value="Sizes">Sizes</td>
</tr>
<tr>
<td><select name="os0">
<option value="S">S $24.99 USD</option>
<option value="M">M $24.99 USD</option>
<option value="L">L $24.99 USD</option>
<option value="XL">XL $27.99 USD</option>
<option value="2XL">2XL $27.99 USD</option>
<option value="3XL">3XL $27.99 USD</option>
</select> </td>
</tr>
</table>
<input type="hidden" name="currency_code" value="USD">
<input type="image" src="https://www.paypalobjects.com/en_US/i/btn/btn_cart_LG.gif" border="0" name="submit" alt="PayPal - The safer, easier way to pay online!">
<img alt="" border="0" src="https://www.paypalobjects.com/en_US/i/scr/pixel.gif" width="1" height="1">
</form>
<!-- <button class="w3-button w3-teal w3-padding-large"><i class="fa fa-check"></i> Add to Cart</button> -->
</li>
</ul>
</div>
</div>
<div class="w3-half w3-row-padding w3-left w3-padding-32" id="France">
<div class="Times">
<h2>France</h2> </div>
<h3>“Oui the People…” </h3>
<p>France stood by our side when we demanded liberty, and the French musketeer served as an inspirational figure of justice for many. They were our first ally and supported our nation in its earliest days, so let’s return the favor by supporting their
promising team from day one of the 2018 World Cup.</p>
<div class=" w3-margin-bottom">
<ul class="w3-ul w3-border w3-hover-shadow">
<li class="w3-theme">
<p class="w3-xlarge">Americans for France Uncle Sam Short Sleeve</p>
</li>
<li class="w3-padding-16"><b>Sizes:</b> S, M, L, XL, 2XL, 3XL</li>
<li class="w3-padding-16"><b>Colors:</b> Blue </li>
<a href="Americans for France Sam SS.html" target="_blank">
<li class="w3-padding-16 w3-center">
<div><img src="images/Americans for France Sam SS.PNG" alt="CEO" width="250px" height="300px" class="w3-round">
<img src="images/Americans for France Sam SS (back).PNG" alt="CEO" width="250px" height="300px" class="w3-round"></div>
</li>
</a>
<li class="w3-theme-l5 w3-padding-24">
<form target="paypal" action="https://www.paypal.com/cgi-bin/webscr" method="post">
<input type="hidden" name="cmd" value="_s-xclick">
<input type="hidden" name="hosted_button_id" value="VSF64GXYZVDEY">
<table>
<tr>
<td><input type="hidden" name="on0" value="Sizes">Sizes</td>
</tr>
<tr>
<td><select name="os0">
<option value="S">S $24.99 USD</option>
<option value="M">M $24.99 USD</option>
<option value="L">L $24.99 USD</option>
<option value="XL">XL $27.99 USD</option>
<option value="2XL">2XL $27.99 USD</option>
<option value="3XL">3XL $27.99 USD</option>
</select> </td>
</tr>
</table>
<input type="hidden" name="currency_code" value="USD">
<input type="image" src="https://www.paypalobjects.com/en_US/i/btn/btn_cart_LG.gif" border="0" name="submit" alt="PayPal - The safer, easier way to pay online!">
<img alt="" border="0" src="https://www.paypalobjects.com/en_US/i/scr/pixel.gif" width="1" height="1">
</form>
<!-- <button class="w3-button w3-teal w3-padding-large"><i class="fa fa-check"></i> Add to Cart</button> -->
</li>
</ul>
</div>
</div>
<div class="w3-half w3-row-padding w3-left w3-padding-32" id="Germany">
<div class="Times">
<h2>Germany</h2> </div>
<h3>“The Wurst for the Best!” </h3>
<p>Germany has historically been a very successful footballing nation, hence their new slogan “Best Never Rest.” With America’s failure to qualify, we decided to poke fun at ourselves (and our two nations’ love of sausage) with our Americans for Germany
shirts.
</p>
<br>
<div class="w3-margin-bottom">
<ul class="w3-ul w3-border w3-hover-shadow">
<li class="w3-theme">
<p class="w3-xlarge">Americans for Germany Uncle Sam Short Sleeve</p>
</li>
<li class="w3-padding-16"><b>Sizes:</b> S, M, L, XL, 2XL, 3XL</li>
<li class="w3-padding-16"><b>Colors:</b> Black </li>
<a href="Americans for Germany Sam SS.html" target="_blank">
<li class="w3-padding-16 w3-center">
<div><img src="images/Americans for Germany Sam SS.PNG" alt="CEO" width="250px" height="300px" class="w3-round">
<img src="images/Americans for Germany Sam SS (back).PNG" alt="CEO" width="250px" height="300px" class="w3-round"></div>
</li>
</a>
<li class="w3-theme-l5 w3-padding-24">
<form target="paypal" action="https://www.paypal.com/cgi-bin/webscr" method="post">
<input type="hidden" name="cmd" value="_s-xclick">
<input type="hidden" name="hosted_button_id" value="87K7MF4YT3N7C">
<table>
<tr>
<td><input type="hidden" name="on0" value="Sizes">Sizes</td>
</tr>
<tr>
<td><select name="os0">
<option value="S">S $24.99 USD</option>
<option value="M">M $24.99 USD</option>
<option value="L">L $24.99 USD</option>
<option value="XL">XL $27.99 USD</option>
<option value="2XL">2XL $27.99 USD</option>
<option value="3XL">3XL $27.99 USD</option>
</select> </td>
</tr>
</table>
<input type="hidden" name="currency_code" value="USD">
<input type="image" src="https://www.paypalobjects.com/en_US/i/btn/btn_cart_LG.gif" border="0" name="submit" alt="PayPal - The safer, easier way to pay online!">
<img alt="" border="0" src="https://www.paypalobjects.com/en_US/i/scr/pixel.gif" width="1" height="1">
</form>
<!-- <button class="w3-button w3-teal w3-padding-large"><i class="fa fa-check"></i> Add to Cart</button> -->
</li>
</ul>
</div>
</div>
<div class="w3-row-padding w3-center w3-padding-32" id="Iceland">
<div class="Times">
<h2>ICELAND</h2> </div>
<h3>“We all have a little Ice in our veins.”</h3>
<p>While Icelandic may not be a large demographic in the United States, we found their team’s success story to be inspirational and something the USSF should look to in order to mend some of our own flaws. Their run through the 2016 Euros and qualification
for the 2018 World Cup™ are some of the greatest underdog tales ever told. Show your support with one of our great Americans For Iceland shirts!
</p>
<br>
<div class="w3-half w3-margin-bottom">
<ul class="w3-ul w3-border w3-hover-shadow">
<li class="w3-theme">
<p class="w3-xlarge">Americans for Iceland Uncle Sam Short Sleeve</p>
</li>
<li class="w3-padding-16"><b>Sizes:</b> S, M, L, XL, 2XL, 3XL</li>
<li class="w3-padding-16"><b>Colors:</b> Blue </li>
<a href="UncleSamIceland.html" target="_blank">
<li class="w3-padding-16">
<div><img src="images/Americans for Iceland Sam SS.PNG" alt="CEO" width="250px" height="300px" class="w3-round">
<img src="images/Americans for Iceland SS (back).PNG" alt="CEO" width="250px" height="300px" class="w3-round"></div>
</li>
</a>
<!--<li class="w3-padding-16">
<h2 class="w3-wide"><i class="fa fa-usd"></i> 10</h2>
<span class="w3-opacity"></span>
</li>-->
<li class="w3-theme-l5 w3-padding-24">
<form target="paypal" action="https://www.paypal.com/cgi-bin/webscr" method="post">
<input type="hidden" name="cmd" value="_s-xclick">
<input type="hidden" name="hosted_button_id" value="J9BYGV9YX38TC">
<table>
<tr>
<td><input type="hidden" name="on0" value="Sizes">Sizes</td>
</tr>
<tr>
<td><select name="os0">
<option value="S">S $24.99 USD</option>
<option value="M">M $24.99 USD</option>
<option value="L">L $24.99 USD</option>
<option value="XL">XL $27.99 USD</option>
<option value="2XL">2XL $27.99 USD</option>
<option value="3XL">3XL $27.99 USD</option>
</select> </td>
</tr>
</table>
<input type="hidden" name="currency_code" value="USD">
<input type="image" src="https://www.paypalobjects.com/en_US/i/btn/btn_cart_LG.gif" border="0" name="submit" alt="PayPal - The safer, easier way to pay online!">
<img alt="" border="0" src="https://www.paypalobjects.com/en_US/i/scr/pixel.gif" width="1" height="1">
</form>
<!-- <button class="w3-button w3-teal w3-padding-large"><i class="fa fa-check"></i> Add to Cart</button> -->
</li>
</ul>
</div>
<div class="w3-half w3-margin-bottom">
<ul class="w3-ul w3-border w3-hover-shadow">
<li class="w3-theme">
<p class="w3-xlarge">Americans for Iceland Longboat Short Sleeve</p>
</li>
<li class="w3-padding-16"><b>Sizes:</b> S, M, L, XL, 2XL, 3XL</li>
<li class="w3-padding-16"><b>Colors:</b> Blue </li>
<a href="LongboatIcelandSS.html" target="_blank">
<li class="w3-padding-16">
<div><img src="images/Americans for Iceland Delaware SS.PNG" alt="CEO" width="250px" height="300px" class="w3-round">
<img src="images/Americans for Iceland SS (back).PNG" alt="CEO" width="250px" height="300px" class="w3-round"></div>
</li>
</a>
<!-- <li class="w3-padding-16">
<h2 class="w3-wide"><i class="fa fa-usd"></i> 10</h2>
<span class="w3-opacity"></span>
</li> -->
<li class="w3-theme-l5 w3-padding-24">
<form target="paypal" action="https://www.paypal.com/cgi-bin/webscr" method="post">
<input type="hidden" name="cmd" value="_s-xclick">
<input type="hidden" name="hosted_button_id" value="9G7JLWF5ZCWZY">
<table>
<tr>
<td><input type="hidden" name="on0" value="Sizes">Sizes</td>
</tr>
<tr>
<td><select name="os0">
<option value="S">S $24.99 USD</option>
<option value="M">M $24.99 USD</option>
<option value="L">L $24.99 USD</option>
<option value="XL">XL $27.99 USD</option>
<option value="2XL">2XL $27.99 USD</option>
<option value="3XL">3XL $27.99 USD</option>
</select> </td>
</tr>
</table>
<input type="hidden" name="currency_code" value="USD">
<input type="image" src="https://www.paypalobjects.com/en_US/i/btn/btn_cart_LG.gif" border="0" name="submit" alt="PayPal - The safer, easier way to pay online!">
<img alt="" border="0" src="https://www.paypalobjects.com/en_US/i/scr/pixel.gif" width="1" height="1">
</form>
<!-- <button class="w3-button w3-teal w3-padding-large"><i class="fa fa-check"></i> Add to Cart</button> -->
</li>
</ul>
</div>
</div>
<div class="w3-half w3-row-padding w3-left w3-padding-32" id="Mexico">
<div class="Times">
<h2>Mexico</h2> </div>
<h3>“Un equipo. Dos naciones.” </h3>
<p>Although Mexico is undoubtedly the largest rival of the USMNT, they are also our nearest neighbor in the 2018 World Cup™ and perhaps the strongest CONCACAF contender. Proudly represent our friends from the south with one of our Americans for Mexico
shirts!
</p>
<br>
<div class=" w3-margin-bottom">
<ul class="w3-ul w3-border w3-hover-shadow">
<li class="w3-theme">
<p class="w3-xlarge">Americans for Mexico Eagle Short Sleeve</p>
</li>
<li class="w3-padding-16"><b>Sizes:</b> S, M, L, XL, 2XL, 3XL</li>
<li class="w3-padding-16"><b>Colors:</b> Green </li>
<a href="Americans for Mexico Eagle SS.html" target="_blank">
<li class="w3-padding-16 w3-center">
<div><img src="images/Americans for Mexico Eagle SS.PNG" alt="CEO" width="250px" height="300px" class="w3-round">
<img src="images/Americans for Mexico Eagle SS (back).PNG" alt="CEO" width="250px" height="300px" class="w3-round"></div>
</li>
</a>
<li class="w3-theme-l5 w3-padding-24">
<form target="paypal" action="https://www.paypal.com/cgi-bin/webscr" method="post">
<input type="hidden" name="cmd" value="_s-xclick">
<input type="hidden" name="hosted_button_id" value="P9LWV8ZEGUTAG">
<table>
<tr>
<td><input type="hidden" name="on0" value="Sizes">Sizes</td>
</tr>
<tr>
<td><select name="os0">
<option value="S">S $24.99 USD</option>
<option value="M">M $24.99 USD</option>
<option value="L">L $24.99 USD</option>
<option value="XL">XL $27.99 USD</option>
<option value="2XL">2XL $27.99 USD</option>
<option value="3XL">3XL $27.99 USD</option>
</select> </td>
</tr>
</table>
<input type="hidden" name="currency_code" value="USD">
<input type="image" src="https://www.paypalobjects.com/en_US/i/btn/btn_cart_LG.gif" border="0" name="submit" alt="PayPal - The safer, easier way to pay online!">
<img alt="" border="0" src="https://www.paypalobjects.com/en_US/i/scr/pixel.gif" width="1" height="1">
</form>
<!-- <button class="w3-button w3-teal w3-padding-large"><i class="fa fa-check"></i> Add to Cart</button> -->
</li>
</ul>
</div>
</div>
<div class="w3-half w3-row-padding w3-left w3-padding-32" id="Portugal">
<div class="Times">
<h2>Portugal</h2> </div>
<h3>“From ‘Si’ to shining “Si!” </h3>
<p>Ronaldo’s storied career has been filled by iconic plays, which are often followed by iconic celebrations. We incorporated this into our design by having Uncle Sam imitate Ronaldo’s celebratory jump and yelling of “Siii!” Place an order for your Americans
for Portugal shirt today!
</p>
<div class="w3-margin-bottom">
<ul class="w3-ul w3-border w3-hover-shadow">
<li class="w3-theme">
<p class="w3-xlarge">Americans for Portugal Uncle Sam Short Sleeve</p>
</li>
<li class="w3-padding-16"><b>Sizes:</b> S, M, L, XL, 2XL, 3XL</li>
<li class="w3-padding-16"><b>Colors:</b> Red </li>
<a href="Americans for Portugal Sam SS.html" target="_blank">
<li class="w3-padding-16 w3-center">
<div><img src="images/Americans for Portugal Sam SS.PNG" alt="CEO" width="250px" height="300px" class="w3-round">
<img src="images/Americans for Portugal Sam SS (back).PNG" alt="CEO" width="250px" height="300px" class="w3-round"></div>
</li>
</a>
<li class="w3-theme-l5 w3-padding-24">
<form target="paypal" action="https://www.paypal.com/cgi-bin/webscr" method="post">
<input type="hidden" name="cmd" value="_s-xclick">
<input type="hidden" name="hosted_button_id" value="DH6ZYWH4LA47S">
<table>
<tr>
<td><input type="hidden" name="on0" value="Sizes">Sizes</td>
</tr>
<tr>
<td><select name="os0">
<option value="S">S $24.99 USD</option>
<option value="M">M $24.99 USD</option>
<option value="L">L $24.99 USD</option>
<option value="XL">XL $27.99 USD</option>
<option value="2XL">2XL $27.99 USD</option>
<option value="3XL">3XL $27.99 USD</option>
</select> </td>
</tr>
</table>
<input type="hidden" name="currency_code" value="USD">
<input type="image" src="https://www.paypalobjects.com/en_US/i/btn/btn_cart_LG.gif" border="0" name="submit" alt="PayPal - The safer, easier way to pay online!">
<img alt="" border="0" src="https://www.paypalobjects.com/en_US/i/scr/pixel.gif" width="1" height="1">
</form>
<!-- <button class="w3-button w3-teal w3-padding-large"><i class="fa fa-check"></i> Add to Cart</button> -->
</li>
</ul>
</div>
</div>
<div class="w3-row-padding w3-center w3-padding-32" id="Wall"></div>
<!-- Work Row -->
<div class="w3-row-padding w3-padding-64 w3-theme-l1" id="Mission">
<!--w3-quarter-->
<h2>Our Mission</h2>
<p>Our mission is to provide products of the highest quality and exceptional customer service while promoting the development and continued support of soccer in the United States.</p>
<h2>About Us</h2>
<p>
B2R (Back 2 Roots) Sports LLC is an apparel company on a mission to reinvigorate American soccer fans after the USA’s failure to qualify for the 2018 World Cup™. We are providing high quality T-shirts with unique designs that represent the diversity and
passion of soccer fans in the USA. Whether you’re supporting your country of ancestry or simply joining pulling for a team you admire, we are happy to provide you with the apparel you need. Additionally, we will be donating 10% of our proceeds to
our new charitable organization – the Pletcher Family Future of Fútbol Foundation - in order to contribute to the future growth of the sport in America on a local level. We thank you for your support and look forward to an exciting, soccer-filled
summer with you! When you don’t know who to root for, go Back to your Roots!
</p>
<h2> About the Foundation </h2>
<p> The Pletcher Family Future of Fútbol Foundation is our new charitable, non-for-profit organization that aims to strengthen the growth of soccer in America by building and maintaining public soccer fields in inner cities. We will be making announcements
concerning the exact cities once enough funding is secured to do so, but our loose plan is to start in the Midwest and expand outwards from there. Thank you for your support!
</p>
<h2>Payment</h2>
<p>All of our transactions are powered by PayPal’s safe and secure processing. Whether or not you have a PayPal account, you can use their services to order our shirts with no extra transaction costs to you. They won’t store your information without
your permission, and they help assure that the ordering process is fast and easy for both parties.
</p>
</div>
<!-- Team Container -->
<div class="w3-container w3-padding-64 w3-center" id="team">
<h2>OUR TEAM</h2>
<p>Meet the team:</p>
<div class="w3-row"><br>
<div class="w3-quarter">
<img src="images/dylan.jpg" alt="CEO" style="width:45%" class="w3-circle w3-hover-opacity">
<h3>Dylan Pletcher </h3>
<p>General Manager</p>
<div class="w3-small">
<p> Dylan is a junior at Indiana University studying Business Management, Sustainable Energy, and German. He is a lifelong US Soccer fan and remains optimistic about the future of the team despite their recent shortcomings. </p>
</div>
<div class="w3-tiny">
<p> <a href="https://www.linkedin.com/in/dylanpletcher/"> LinkedIn </a> </p>
</div>
</div>
<div class="w3-quarter">
<img src="images/matt.jpg" alt="CEO" style="width:45%" class="w3-circle w3-hover-opacity">
<h3>Matt Pletcher </h3>
<p>Advisor</p>
<div class="w3-small">
<p> Matt Pletcher is a lifelong soccer fan, and one of the few to have grown up playing it in Northern Indiana during the 70s. Today he is a die-hard Liverpool fan who hopes to see the American talent that is spreading across Europe reach its full
potential. </p>
</div>
<div class="w3-tiny">
<p> <a href="https://www.linkedin.com/in/matt-pletcher-145572b/"> LinkedIn</a> </p>
</div>
</div>
<div class="w3-quarter">
<img src="images/jacob.jpg" alt="CTO" style="width:45%" class="w3-circle w3-hover-opacity">
<h3>Jacob Good</h3>
<p>Backend Web Developer</p>
<div class="w3-small">
<p> Jacob is a computer specialist with interests in networking, server management, and software engineering. He has always been active in sports, especially with soccer, having played for nearly 15 years. </p>
</div>
<div class="w3-tiny">
<p> <a href="https://www.linkedin.com/in/jacob-g-52574ba7/"> LinkedIn</a> </p>
</div>
</div>
<div class="w3-quarter">
<img src="images/justin.jpg" alt="Web" style="width:45%" class="w3-circle w3-hover-opacity">
<h3>Justin Drinkall</h3>
<p>Web Designer</p>
<div class="w3-small">
<p> Justin is a junior at Indiana University studying Informatics while getting minors in Business and Marketing. While he is a relatively new fan of US soccer, he looks forward to its growth and hopes to see the US being competitive in the world
cup once again. </p>
</div>
<div class="w3-tiny">
<p> <a href="https://www.linkedin.com/in/justin-drinkall-015b20131/"> LinkedIn</a> </p>
</div>
</div>
<div class="w3-quarter">
<img src="images/carav2.jpeg" alt="Designer" style="width:45%" class="w3-circle w3-hover-opacity">
<h3>Cara Yoder </h3>
<p>Shirt Designer</p>
<div class="w3-small">
<p> Cara Yoder is a student at Indiana University, Bloomington pursuing a BFA in Graphic Design and the Liberal Arts & Management Program certificate. She enjoys spending time with friends and family, traveling, baking bread, and living in the present.
</p>
</div>
<div class="w3-tiny">
<p> <a href="https://www.linkedin.com/in/cara-yoder-410008127/"> LinkedIn</a> </p>
</div>
</div>
<!--<div class="w3-quarter">
<img src="images/tommy.jpg" alt="Designer" style="width:45%" class="w3-circle w3-hover-opacity">
<h3>Thomas McLaughlin</h3>
<p>Shirt Designer</p>
<div class="w3-small"><p> Hello I will be talking about my life. </p> </div>
<div class="w3-tiny"> <p> <a href="https://www.linkedin.com/in/dylanpletcher/"> LinkedIn</a> </p> </div>
</div>-->
</div>
</div>
<!-- Contact Container -->
<div class="w3-container w3-padding-64 w3-theme-l5" id="contact">
<div class="w3-row">
<div class="w3-col m5">
<div class="w3-padding-16"><span class="w3-xlarge w3-border-teal w3-bottombar">Contact Us</span></div>
<p><i class="fa fa-map-marker w3-text-teal w3-xlarge"></i> Bloomington, Indiana US</p>
<!--<p><i class="fa fa-phone w3-text-teal w3-xlarge"></i> Phone </p>-->
<p><i class="fa fa-envelope-o w3-text-teal w3-xlarge"></i> customerservice@back2rootssports.com</p>
<h2 class="w3-border-teal w3-bottombar">Special Orders</h2>
<p>For orders of 21+ shirts, questions about wholesale pricing, and other general inquiries, please contact customersupport@back2rootssports.com.</p>
</div>
<!-- <div class="w3-col m7">
<form class="w3-container w3-card-4 w3-padding-16 w3-white" action="/action_page.php" target="_blank">
<div class="w3-section">
<label>Name</label>
<input class="w3-input" type="text" name="Name" required>
</div>
<div class="w3-section">
<label>Email</label>
<input class="w3-input" type="text" name="Email" required>
</div>
<div class="w3-section">
<label>Message</label>
<input class="w3-input" type="text" name="Message" required>
</div>
<input class="w3-check" type="checkbox" checked name="Like">
<label>I Like it!</label>
<button type="submit" class="w3-button w3-right w3-theme">Send</button>
</form>
</div> -->
</div>
</div>
<!-- Footer -->
<footer class="w3-container w3-padding-32 w3-theme-d1">
<h4>Follow Us</h4>
<a class="w3-button w3-large w3-teal" href="https://twitter.com/B2RSports" title="Twitter"><i class="fa fa-twitter"></i></a>
<a class="w3-button w3-large w3-teal" href="https://www.reddit.com/user/B2R_Sports/" title="Reddit"><i class="fa fa-reddit"></i></a>
<a class="w3-button w3-large w3-teal" href="https://www.instagram.com/b2rsports/" title="Instagram"><i class="fa fa-instagram"></i></a>
<a class="w3-button w3-large w3-teal" href="https://www.linkedin.com/company/18513315/" title="Linkedin"><i class="fa fa-linkedin"></i></a>
<!--<a class="w3-button w3-large w3-teal" href="javascript:void(0)" title="Facebook"><i class="fa fa-facebook"></i></a>-->
<!--<p>Powered by <a href="https://www.w3schools.com/w3css/default.asp" target="_blank">w3.css</a></p>-->
<div style="position:relative;bottom:100px;z-index:1;" class="w3-tooltip w3-right">
<span class="w3-text w3-padding w3-teal w3-hide-small">Go To Top</span>
<a class="w3-button w3-theme" href="#myPage"><span class="w3-xlarge">
<i class="fa fa-chevron-circle-up"></i></span></a>
</div>
</footer>
<script>
// Script for side navigation
function w3_open() {
var x = document.getElementById("mySidebar");
x.style.width = "300px";
x.style.paddingTop = "10%";
x.style.display = "block";
}
// Close side navigation
function w3_close() {
document.getElementById("mySidebar").style.display = "none";
}
// Used to toggle the menu on smaller screens when clicking on the menu button
function openNav() {
var x = document.getElementById("navDemo");
if (x.className.indexOf("w3-show") == -1) {
x.className += " w3-show";
} else {
x.className = x.className.replace(" w3-show", "");
}
}
(function($) {
$.fn.menumaker = function(options) {
var cssmenu = $(this),
settings = $.extend({
title: "Menu",
format: "dropdown",
breakpoint: 768,
sticky: false
}, options);
return this.each(function() {
cssmenu.find('li ul').parent().addClass('has-sub');
if (settings.format != 'select') {
cssmenu.prepend('<div id="menu-button">' + settings.title + '</div>');
$(this).find("#menu-button").on('click', function() {
$(this).toggleClass('menu-opened');
var mainmenu = $(this).next('ul');
if (mainmenu.hasClass('open')) {
mainmenu.hide().removeClass('open');
} else {
mainmenu.show().addClass('open');
if (settings.format === "dropdown") {
mainmenu.find('ul').show();
}
}
});
multiTg = function() {
cssmenu.find(".has-sub").prepend('<span class="submenu-button"></span>');
cssmenu.find('.submenu-button').on('click', function() {
$(this).toggleClass('submenu-opened');
if ($(this).siblings('ul').hasClass('open')) {
$(this).siblings('ul').removeClass('open').hide();
} else {
$(this).siblings('ul').addClass('open').show();
}
});
};
if (settings.format === 'multitoggle') multiTg();
else cssmenu.addClass('dropdown');
} else if (settings.format === 'select') {
cssmenu.append('<select style="width: 100%"/>').addClass('select-list');
var selectList = cssmenu.find('select');
selectList.append('<option>' + settings.title + '</option>', {
"selected": "selected",
"value": ""
});
cssmenu.find('a').each(function() {
var element = $(this),
indentation = "";
for (i = 1; i < element.parents('ul').length; i++) {
indentation += '-';
}
selectList.append('<option value="' + $(this).attr('href') + '">' + indentation + element.text() + '</option');
});
selectList.on('change', function() {
window.location = $(this).find("option:selected").val();
});
}
if (settings.sticky === true) cssmenu.css('position', 'fixed');
resizeFix = function() {
if ($(window).width() > settings.breakpoint) {
cssmenu.find('ul').show();
cssmenu.removeClass('small-screen');
if (settings.format === 'select') {
cssmenu.find('select').hide();
} else {
cssmenu.find("#menu-button").removeClass("menu-opened");
}
}
if ($(window).width() <= settings.breakpoint && !cssmenu.hasClass("small-screen")) {
cssmenu.find('ul').hide().removeClass('open');
cssmenu.addClass('small-screen');
if (settings.format === 'select') {
cssmenu.find('select').show();
}
}
};
resizeFix();
return $(window).on('resize', resizeFix);
});
};
})(jQuery);
(function($) {
$(document).ready(function() {
$(document).ready(function() {
$("#cssmenu").menumaker({
title: "Menu",
format: "dropdown"
});
$("#cssmenu a").each(function() {
var linkTitle = $(this).text();
$(this).attr('data-title', linkTitle);
});
});
});
})(jQuery);
</script>
</body>
</html>