-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex(old 5:21:18).html
1359 lines (1227 loc) · 67.2 KB
/
index(old 5:21:18).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>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-row-padding w3-center 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. His role in Jurgen Klopp’s system led to goal and assist totals far above those of all other wingers in the Premier League. 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-half 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">
<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-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="2WG5S5PHZT5E8">
<table>
<tr>
<td><input type="hidden" name="on0" value="Sizes">Sizes</td>
</tr>
<tr>
<td><select name="os0">
<option value="S">S $29.95 USD</option>
<option value="M">M $29.95 USD</option>
<option value="L">L $29.95 USD</option>
<option value="XL">XL $32.95 USD</option>
<option value="2XL">2XL $32.95 USD</option>
<option value="3XL">3XL $32.95 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 Egypt Uncle Sam Long 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 LS.html" target="_blank">
<li class="w3-padding-16">
<div><img src="images/Americans for Egypt Sam LS.PNG" alt="CEO" width="250px" height="300px" class="w3-round">
<img src="images/Americans for Egypt Sam LS (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="2PB332ZGGKNA2">
<table>
<tr>
<td><input type="hidden" name="on0" value="Sizes">Sizes</td>
</tr>
<tr>
<td><select name="os0">
<option value="S">S $39.95 USD</option>
<option value="M">M $39.95 USD</option>
<option value="L">L $39.95 USD</option>
<option value="XL">XL $42.95 USD</option>
<option value="2XL">2XL $42.95 USD</option>
<option value="3XL">3XL $42.95 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="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!</p>
<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 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">
<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 $29.95 USD</option>
<option value="M">M $29.95 USD</option>
<option value="L">L $29.95 USD</option>
<option value="XL">XL $32.95 USD</option>
<option value="2XL">2XL $32.95 USD</option>
<option value="3XL">3XL $32.95 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 England Uncle Sam Long 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 LS.html" target="_blank">
<li class="w3-padding-16">
<div><img src="images/Americans for England Sam LS.PNG" alt="CEO" width="250px" height="300px" class="w3-round">
<img src="images/Americans for England Sam LS (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="QSPFCSHP6NGUL">
<table>
<tr>
<td><input type="hidden" name="on0" value="Sizes">Sizes</td>
</tr>
<tr>
<td><select name="os0">
<option value="S">S $39.95 USD</option>
<option value="M">M $39.95 USD</option>
<option value="L">L $39.95 USD</option>
<option value="XL">XL $42.95 USD</option>
<option value="2XL">2XL $42.95 USD</option>
<option value="3XL">3XL $42.95 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="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. Order your Americans for France shirt now! </p>
<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 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">
<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-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="VSF64GXYZVDEY">
<table>
<tr>
<td><input type="hidden" name="on0" value="Sizes">Sizes</td>
</tr>
<tr>
<td><select name="os0">
<option value="S">S $29.95 USD</option>
<option value="M">M $29.95 USD</option>
<option value="L">L $29.95 USD</option>
<option value="XL">XL $32.95 USD</option>
<option value="2XL">2XL $32.95 USD</option>
<option value="3XL">3XL $32.95 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 France Uncle Sam Long 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 LS.html" target="_blank">
<li class="w3-padding-16">
<div><img src="images/Americans for France Sam LS.PNG" alt="CEO" width="250px" height="300px" class="w3-round">
<img src="images/Americans for France Sam LS (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="BM7MT9B96EJZW">
<table>
<tr>
<td><input type="hidden" name="on0" value="Sizes">Sizes</td>
</tr>
<tr>
<td><select name="os0">
<option value="S">S $39.95 USD</option>
<option value="M">M $39.95 USD</option>
<option value="L">L $39.95 USD</option>
<option value="XL">XL $42.95 USD</option>
<option value="2XL">2XL $42.95 USD</option>
<option value="3XL">3XL $42.95 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="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. Order yours today to support the reigning world champions!</p>
<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 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">
<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-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="87K7MF4YT3N7C">
<table>
<tr>
<td><input type="hidden" name="on0" value="Sizes">Sizes</td>
</tr>
<tr>
<td><select name="os0">
<option value="S">S $29.95 USD</option>
<option value="M">M $29.95 USD</option>
<option value="L">L $29.95 USD</option>
<option value="XL">XL $32.95 USD</option>
<option value="2XL">2XL $32.95 USD</option>
<option value="3XL">3XL $32.95 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 Germany Uncle Sam Long 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 LS.html" target="_blank">
<li class="w3-padding-16">
<div><img src="images/Americans for Germany Sam LS.PNG" alt="CEO" width="250px" height="300px" class="w3-round">
<img src="images/Americans for Germany Sam LS (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="A4CH67J8V39D6">
<table>
<tr>
<td><input type="hidden" name="on0" value="Sizes">Sizes</td>
</tr>
<tr>
<td><select name="os0">
<option value="S">S $39.95 USD</option>
<option value="M">M $39.95 USD</option>
<option value="L">L $39.95 USD</option>
<option value="XL">XL $42.95 USD</option>
<option value="2XL">2XL $42.95 USD</option>
<option value="3XL">3XL $42.95 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 $29.95 USD</option>
<option value="M">M $29.95 USD</option>
<option value="L">L $29.95 USD</option>
<option value="XL">XL $32.95 USD</option>
<option value="2XL">2XL $32.95 USD</option>
<option value="3XL">3XL $32.95 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 Uncle Sam Long 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="UncleSamIcelandLS.html" target="_blank">
<li class="w3-padding-16">
<div><img src="images/Americans for Iceland Sam LS.PNG" alt="CEO" width="250px" height="300px" class="w3-round">
<img src="images/Americans for Iceland LS (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="P492D3H8UKWWG">
<table>
<tr>
<td><input type="hidden" name="on0" value="Sizes">Sizes</td>
</tr>
<tr>
<td><select name="os0">
<option value="S">S $39.95 USD</option>
<option value="M">M $39.95 USD</option>
<option value="L">L $39.95 USD</option>
<option value="XL">XL $42.95 USD</option>
<option value="2XL">2XL $42.95 USD</option>
<option value="3XL">3XL $42.95 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">
<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 Delaware 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 $29.95 USD</option>
<option value="M">M $29.95 USD</option>
<option value="L">L $29.95 USD</option>
<option value="XL">XL $32.95 USD</option>
<option value="2XL">2XL $32.95 USD</option>
<option value="3XL">3XL $32.95 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 Delaware Long 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="LongboatIcelandLS.html" target="_blank">
<li class="w3-padding-16">
<div><img src="images/Americans for Iceland Delaware LS.PNG" alt="CEO" width="250px" height="300px" class="w3-round">
<img src="images/Americans for Iceland LS (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="QGJBPDB3EB8P2">
<table>
<tr>
<td><input type="hidden" name="on0" value="Sizes">Sizes</td>
</tr>
<tr>
<td><select name="os0">
<option value="S">S $39.95 USD</option>
<option value="M">M $39.95 USD</option>
<option value="L">L $39.95 USD</option>
<option value="XL">XL $42.95 USD</option>
<option value="2XL">2XL $42.95 USD</option>
<option value="3XL">3XL $42.95 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="Mexico">
<div class="Times">
<h2>Mexico</h2> </div>
<h3>“Un equipo. Dos naciones.”</h3>
<p><span>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!</span></p>
<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 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">
<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-padding-16" style="width:45%" >
<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="P9LWV8ZEGUTAG">
<table>
<tr>
<td><input type="hidden" name="on0" value="Sizes">Sizes</td>
</tr>
<tr>
<td><select name="os0">
<option value="S">S $29.95 USD</option>
<option value="M">M $29.95 USD</option>
<option value="L">L $29.95 USD</option>
<option value="XL">XL $32.95 USD</option>
<option value="2XL">2XL $32.95 USD</option>
<option value="3XL">3XL $32.95 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 Mexico Eagle Long 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 LS.html" target="_blank">
<li class="w3-padding-16">
<div><img src="images/Americans for Mexico Eagle LS.PNG" alt="CEO" width="250px" height="300px" class="w3-round">
<img src="images/Americans for Mexico Eagle LS (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="3F8A7PQDTWN4Q">
<table>
<tr>
<td><input type="hidden" name="on0" value="Sizes">Sizes</td>
</tr>
<tr>
<td><select name="os0">
<option value="S">S $39.95 USD</option>
<option value="M">M $39.95 USD</option>
<option value="L">L $39.95 USD</option>
<option value="XL">XL $42.95 USD</option>
<option value="2XL">2XL $42.95 USD</option>
<option value="3XL">3XL $42.95 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="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-half 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">
<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-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="DH6ZYWH4LA47S">
<table>
<tr>
<td><input type="hidden" name="on0" value="Sizes">Sizes</td>
</tr>
<tr>
<td><select name="os0">
<option value="S">S $29.95 USD</option>
<option value="M">M $29.95 USD</option>
<option value="L">L $29.95 USD</option>
<option value="XL">XL $32.95 USD</option>
<option value="2XL">2XL $32.95 USD</option>
<option value="3XL">3XL $32.95 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 Portugal Uncle Sam Long 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 LS.html" target="_blank">
<li class="w3-padding-16">
<div><img src="images/Americans for Portugal Sam LS.PNG" alt="CEO" width="250px" height="300px" class="w3-round">
<img src="images/Americans for Portugal Sam LS (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="SJLUFRA348XBL">
<table>
<tr>
<td><input type="hidden" name="on0" value="Sizes">Sizes</td>
</tr>
<tr>
<td><select name="os0">
<option value="S">S $39.95 USD</option>
<option value="M">M $39.95 USD</option>
<option value="L">L $39.95 USD</option>
<option value="XL">XL $42.95 USD</option>
<option value="2XL">2XL $42.95 USD</option>
<option value="3XL">3XL $42.95 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-third w3-margin-bottom">
<ul class="w3-ul w3-border w3-hover-shadow">
<li class="w3-theme">
<p class="w3-xlarge">ICELAND</p>
</li>