-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathHome_Page.html
21157 lines (17751 loc) · 848 KB
/
Home_Page.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>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="./Page_Transition.css">
<script src="./Page_Transition_Part_1.js"></script>
<script src="./Page_Transition_Part_2.js"></script>
<link rel="stylesheet" href="./Format_Web.css">
<link rel="stylesheet" href="./blacc_body.css">
<style>
body {
background-color: grey;
}
</style>
</head>
<body>
<div data-role="page" id="newnexxushomepage" style="background-color: black;">
<style>
#navbar {
background-color: #333;
position: none;
top: 0;
width: 100%;
display: block;
transition: top 2s;
}
#navbar a {
float: left;
display: block;
color: red;
text-align: center;
padding: 12px;
text-decoration: none;
font-size: 10px;
}
#navbar a:hover {
background-color: blue;
color: red;
}
a {
text-decoration: none;
}
</style>
<div data-role="header">
<!-- Navbar (sit on top) -->
<div class="BLACC-top" id="navbar">
<div class="BLACC-bar BLACC-white BLACC-wide BLACC-padding BLACC-card">
<a href="https://blaccenterprise.github.io/blacccorporation/index.html" class="BLACC-bar-item BLACC-button BLACC-hover-blue BLACC-hover-text-white BLACC-text-black" target="_self"><b>XX</b> New Nexxus</a>
<a href="./Login.html" class="BLACC-bar-item BLACC-button BLACC-hover-blue BLACC-hover-text-white BLACC-text-black BLACC-right" target="_self"> Login</a>
<!-- Float links to the right. Hide them on small screens -->
<br>
<br>
<br>
<br>
<div class="BLACC-right">
<a style="color: red;" href="#alabama" class="BLACC-bar-item BLACC-button BLACC-hover-blue BLACC-hover-text-white">Alabama</a>
<a style="color: red;" href="#alaska" class="BLACC-bar-item BLACC-button BLACC-hover-blue BLACC-hover-text-white">Alaska</a>
<a style="color: red;" href="#arizona" class="BLACC-bar-item BLACC-button BLACC-hover-blue BLACC-hover-text-white">Arizona</a>
<a style="color: red;" href="#arkansas" class="BLACC-bar-item BLACC-button BLACC-hover-blue BLACC-hover-text-white">Arkansas</a>
<a style="color: red;" href="#california" class="BLACC-bar-item BLACC-button BLACC-hover-blue BLACC-hover-text-white">California</a>
<a style="color: red;" href="#colorado" class="BLACC-bar-item BLACC-button BLACC-hover-blue BLACC-hover-text-white">Colorado</a>
<a style="color: red;" href="#connecticut" class="BLACC-bar-item BLACC-button BLACC-hover-blue BLACC-hover-text-white">Connecticut</a>
<a style="color: red;" href="#delaware" class="BLACC-bar-item BLACC-button BLACC-hover-blue BLACC-hover-text-white">Delaware</a>
<a style="color: red;" href="#florida" class="BLACC-bar-item BLACC-button BLACC-hover-blue BLACC-hover-text-white">Florida</a>
<a style="color: red;" href="#georgia" class="BLACC-bar-item BLACC-button BLACC-hover-blue BLACC-hover-text-white">Georgia</a>
<a style="color: red;" href="#hawaii" class="BLACC-bar-item BLACC-button BLACC-hover-blue BLACC-hover-text-white">Hawaii</a>
<a style="color: red;" href="#idaho" class="BLACC-bar-item BLACC-button BLACC-hover-blue BLACC-hover-text-white">Idaho</a>
<a style="color: red;" href="#illinois" class="BLACC-bar-item BLACC-button BLACC-hover-blue BLACC-hover-text-white">Illinois</a>
<a style="color: red;" href="#indiana" class="BLACC-bar-item BLACC-button BLACC-hover-blue BLACC-hover-text-white">Indiana</a>
<a style="color: red;" href="#iowa" class="BLACC-bar-item BLACC-button BLACC-hover-blue BLACC-hover-text-white">Iowa</a>
<a style="color: red;" href="#kansas" class="BLACC-bar-item BLACC-button BLACC-hover-blue BLACC-hover-text-white">Kansas</a>
<a style="color: red;" href="#kentucky" class="BLACC-bar-item BLACC-button BLACC-hover-blue BLACC-hover-text-white">Kentucky</a>
<a style="color: red;" href="#louisiana" class="BLACC-bar-item BLACC-button BLACC-hover-blue BLACC-hover-text-white">Louisiana</a>
<a style="color: red;" href="#maine" class="BLACC-bar-item BLACC-button BLACC-hover-blue BLACC-hover-text-white">Maine</a>
<a style="color: red;" href="#maryland" class="BLACC-bar-item BLACC-button BLACC-hover-blue BLACC-hover-text-white">Maryland</a>
<a style="color: red;" href="#massachusetts" class="BLACC-bar-item BLACC-button BLACC-hover-blue BLACC-hover-text-white">Massachusetts</a>
<a style="color: red;" href="#michigan" class="BLACC-bar-item BLACC-button BLACC-hover-blue BLACC-hover-text-white">Michigan</a>
<a style="color: red;" href="#minnesota" class="BLACC-bar-item BLACC-button BLACC-hover-blue BLACC-hover-text-white">Minnesota</a>
<a style="color: red;" href="#mississippi" class="BLACC-bar-item BLACC-button BLACC-hover-blue BLACC-hover-text-white">Mississippi</a>
<a style="color: red;" href="#missouri" class="BLACC-bar-item BLACC-button BLACC-hover-blue BLACC-hover-text-white">Missouri</a>
<a style="color: red;" href="#montana" class="BLACC-bar-item BLACC-button BLACC-hover-blue BLACC-hover-text-white">Montana</a>
<a style="color: red;" href="#nebraska" class="BLACC-bar-item BLACC-button BLACC-hover-blue BLACC-hover-text-white">Nebraska</a>
<a style="color: red;" href="#nevada" class="BLACC-bar-item BLACC-button BLACC-hover-blue BLACC-hover-text-white">Nevada</a>
<a style="color: red;" href="#newhampshire" class="BLACC-bar-item BLACC-button BLACC-hover-blue BLACC-hover-text-white">New Hampshire</a>
<a style="color: red;" href="#newjersey" class="BLACC-bar-item BLACC-button BLACC-hover-blue BLACC-hover-text-white">New Jersey</a>
<a style="color: red;" href="#newmexico" class="BLACC-bar-item BLACC-button BLACC-hover-blue BLACC-hover-text-white">New Mexico</a>
<a style="color: red;" href="#newyork" class="BLACC-bar-item BLACC-button BLACC-hover-blue BLACC-hover-text-white">New York</a>
<a style="color: red;" href="#northcarolina" class="BLACC-bar-item BLACC-button BLACC-hover-blue BLACC-hover-text-white">North Carolina</a>
<a style="color: red;" href="#northdakota" class="BLACC-bar-item BLACC-button BLACC-hover-blue BLACC-hover-text-white">North Dakota</a>
<a style="color: red;" href="#ohio" class="BLACC-bar-item BLACC-button BLACC-hover-blue BLACC-hover-text-white">Ohio</a>
<a style="color: red;" href="#oklahoma" class="BLACC-bar-item BLACC-button BLACC-hover-blue BLACC-hover-text-white">Oklahoma</a>
<a style="color: red;" href="#oregon" class="BLACC-bar-item BLACC-button BLACC-hover-blue BLACC-hover-text-white">Oregon</a>
<a style="color: red;" href="#pennsylvania" class="BLACC-bar-item BLACC-button BLACC-hover-blue BLACC-hover-text-white">Pennsylvania</a>
<a style="color: red;" href="#rhodeisland" class="BLACC-bar-item BLACC-button BLACC-hover-blue BLACC-hover-text-white">Rhode Island</a>
<a style="color: red;" href="#southcarolina" class="BLACC-bar-item BLACC-button BLACC-hover-blue BLACC-hover-text-white">South Carolina</a>
<a style="color: red;" href="#southdakota" class="BLACC-bar-item BLACC-button BLACC-hover-blue BLACC-hover-text-white">South Dakota</a>
<a style="color: red;" href="#tennessee" class="BLACC-bar-item BLACC-button BLACC-hover-blue BLACC-hover-text-white">Tennessee</a>
<a style="color: red;" href="#texas" class="BLACC-bar-item BLACC-button BLACC-hover-blue BLACC-hover-text-white">Texas</a>
<a style="color: red;" href="#utah" class="BLACC-bar-item BLACC-button BLACC-hover-blue BLACC-hover-text-white">Utah</a>
<a style="color: red;" href="#vermont" class="BLACC-bar-item BLACC-button BLACC-hover-blue BLACC-hover-text-white">Vermont</a>
<a style="color: red;" href="#virginia" class="BLACC-bar-item BLACC-button BLACC-hover-blue BLACC-hover-text-white">Virginia</a>
<a style="color: red;" href="#washington" class="BLACC-bar-item BLACC-button BLACC-hover-blue BLACC-hover-text-white">Washington</a>
<a style="color: red;" href="#westvirginia" class="BLACC-bar-item BLACC-button BLACC-hover-blue BLACC-hover-text-white">West Virginia</a>
<a style="color: red;" href="#wisconsin" class="BLACC-bar-item BLACC-button BLACC-hover-blue BLACC-hover-text-white">Wisconsin</a>
<a style="color: red;" href="#wyoming" class="BLACC-bar-item BLACC-button BLACC-hover-blue BLACC-hover-text-white">Wyoming</a>
</div>
</div>
</div>
<br>
</div>
<div data-role="main" class="ui-content">
<img class="BLACC-image" src="New_Nexxus_Background.jpg" alt="Architecture" width="1500" height="800">
<br>
<br>
<br>
<br>
<br>
<br>
</div>
<div data-role="footer" style="background-color: red; font-family: Times; text-decoration: none;">
<!-- Footer -->
<footer class="BLACC-container BLACC-black">
<p> Made By B.L.A.C.C. Corportation (c) 2024</p>
<br>
<hr>
<br>
<ul class="lileft ">
<li><a class="BLACC-hover-blue" style="color: red;" href="https://blaccenterprise.github.io/blacccorporation/index.html">B.L.A.C.C. Corporation </a>
</ul>
<ul class="lileft">
<li><a class="BLACC-hover-blue" style="color: red;" href="https://blaccenterprise.github.io/blacc/BLACC_Search.html">B.L.A.C.C. Search</a>
</ul>
<ul class="lileft">
<li><a class="BLACC-hover-blue" style="color: red;" href="https://blaccenterprise.github.io/blacccorporation/B.L.A.C.C.CorporationTERMSANDCONDITIONS.html" target="_blank">Terms</a>
</ul>
<ul class="lileft">
<li><a class="BLACC-hover-blue" style="color: red;" href="https://blaccenterprise.github.io/blacccorporation/PRIVACYPOLICYFORB.L.A.C.C.CORPORATION.html" target="_blank">Privacy Policy</a>
</ul>
<ul class="lileft">
<li><a class="BLACC-hover-blue" style="color: red;" href="https://blaccenterprise.github.io/blacccorporation/Subscribe_Form.html">Subscribe</a>
</ul>
<ul class="lileft">
<li><a class="BLACC-hover-blue" style="color: red;" href="https://blaccenterprise.github.io/blaccconnect/Level_1_Access/United_States_Selection_Level_1_Access.html">B.L.A.C.C. Connect</a>
</ul>
<ul class="liright">
<li><a class="BLACC-hover-blue" style="color: red;" href="https://blaccenterprise.github.io/newnexxus/Page_Transition.html">New Nexxus</a>
</ul>
<br>
<hr>
<br>
<p style="text-align: right;">Powered by <a style="color: red;" href="https://blaccenterprise.github.io/blacccorporation/Website_Template_BLACC_Corporation_Computer_Science_Project_BLACC_Server.html" title="B.L.A.C.C." class="BLACC-hover-text-green">B.L.A.C.C. Server</a>~Created by <a style="color: red;" href="https://blaccenterprise.github.io/blacccorporation/Website_Template_B.L.A.C.C._Corporation.html" title="B.L.A.C.C." class="BLACC-hover-text-green">B.L.A.C.C. Corporation</a></p>
</footer>
<script>
var prevScrollpos = window.pageYOffset;
window.onscroll = function() {
var currentScrollPos = window.pageYOffset;
if (prevScrollpos > currentScrollPos) {
document.getElementById("navbar").style.top = "0";
} else {
document.getElementById("navbar").style.top = "-400px";
}
prevScrollpos = currentScrollPos;
}
</script>
</div>
</div>
</div>
<div data-role="page" id="alabama" style="background-color: #f1f1f1;">
<style>
h1,h2,h3,h4,h5,h6 {font-family: "Oswald"}
body {font-family: "Open Sans"}
hr {border-color: red;}
</style>
<div data-role="header">
<style>
#navbar1 {
background-color: #333;
position: fixed;
top: 0;
width: 100%;
display: block;
transition: top 2s;
}
#navbar1 a {
float: left;
display: block;
color: red;
text-align: center;
padding: 15px;
text-decoration: none;
font-size: 17px;
}
#navbar1 a:hover {
background-color: blue;
color: red;
}
a {
text-decoration: none;
}
</style>
<header class="BLACC-container BLACC-center BLACC-red BLACC-top" id="navbar">
<a href="#newnexxushomepage" class="BLACC-bar-item BLACC-button BLACC-hover-blue BLACC-hover-text-white BLACC-text-black"><b>XX</b> New Nexxus</a>
<h1 class="BLACC-xxxlarge" style="font-family: Georgia;"><b>New Nexxus | The State Of Alabama</b></h1>
<h6 style="color: black;">Welcome to the Student Government <span class="BLACC-tag">Alabama</span></h6>
</header>
<!-- Image header -->
<header class="BLACC-display-container BLACC-wide">
<img class="BLACC-image" src="./New_Nexxus_Background.jpg" alt="Fashion Blog" width="1600" height="1060">
<div class="BLACC-display-left BLACC-padding-large">
</div>
</header>
</div>
<div data-role="main" class="ui-content">
<!-- Grid -->
<div class="BLACC-row BLACC-padding BLACC-border BLACC-border-red">
<!-- Blog entries -->
<div class="BLACC-col l8 s12">
<!-- Blog entry -->
<div class="BLACC-container BLACC-white BLACC-margin BLACC-padding-large">
<div class="BLACC-center">
<h3>Counties A - E</h3>
<h5>Number of Counties: <span class="BLACC-opacity">26</span></h5>
</div>
<div class="BLACC-justify">
<!--
<img src="/BLACCimages/girl_hat.jpg" alt="Girl Hat" style="width:100%" class="BLACC-padding-16">
-->
<p><strong>Locate Your Student Government</strong> </p>
<p class="BLACC-right"><button class="BLACC-button BLACC-black BLACC-hover-red" onclick="myFunction('demo1')" id="myBtn"><b>View Colleges </b> <span class="BLACC-tag BLACC-white">1</span></button></p>
<p class="BLACC-clear"></p>
<div class="BLACC-row BLACC-margin-bottom" id="demo1" style="display:none">
<hr>
<div class="BLACC-col l10 m9">
<a href="#" target="_self"><h4 class="BLACC-hover-text-green">College Name <span class="BLACC-opacity BLACC-medium"></span></h4></a>
<a href="#" target="_self"><h4 class="BLACC-hover-text-green">College Name <span class="BLACC-opacity BLACC-medium"></span></h4></a>
<a href="#" target="_self"><h4 class="BLACC-hover-text-green">College Name <span class="BLACC-opacity BLACC-medium"></span></h4></a>
<a href="#" target="_self"><h4 class="BLACC-hover-text-green">College Name <span class="BLACC-opacity BLACC-medium"></span></h4></a>
<!--
<h4>Member Count : <span class="BLACC-opacity BLACC-medium"> </span></h4>
<p>Great blog post! Following</p>
-->
</div>
</div>
</div>
</div>
<hr>
<!-- Blog entry -->
<div class="BLACC-container BLACC-white BLACC-margin BLACC-padding-large">
<div class="BLACC-center">
<h3>County Name</h3>
<h5>Number of Student Governments: <span class="BLACC-opacity">23</span></h5>
</div>
<div class="BLACC-justify">
<!--
<img src="/BLACCimages/girl_hat.jpg" alt="Girl Hat" style="width:100%" class="BLACC-padding-16">
-->
<p><strong>More Hats!</strong> </p>
<p>Sunt in culpa qui officia deserunt mollit anim id est laborum consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco.</p>
<p class="BLACC-right"><button class="BLACC-button BLACC-black" onclick="myFunction('demo2')" id="myBtn"><b>View Colleges </b> <span class="BLACC-tag BLACC-white">1</span></button></p>
<p class="BLACC-clear"></p>
<div class="BLACC-row BLACC-margin-bottom" id="demo2" style="display:none">
<hr>
<div class="BLACC-col l2 m3">
</div>
<div class="BLACC-col l10 m9">
<a href="#" target="_self"><h4 class="BLACC-hover-text-green">College Name <span class="BLACC-opacity BLACC-medium"></span></h4></a>
<!--
<h4>Member Count : <span class="BLACC-opacity BLACC-medium"> </span></h4>
<p>Great blog post! Following</p>
-->
</div>
</div>
</div>
</div>
<hr>
<!-- Blog entry -->
<div class="BLACC-container BLACC-white BLACC-margin BLACC-padding-large">
<div class="BLACC-center">
<h3>County Name</h3>
<h5>Number of Student Governments: <span class="BLACC-opacity">23</span></h5>
</div>
<div class="BLACC-justify">
<!--
<img src="/BLACCimages/girl_hat.jpg" alt="Girl Hat" style="width:100%" class="BLACC-padding-16">
-->
<p><strong>More Hats!</strong> </p>
<p>Sunt in culpa qui officia deserunt mollit anim id est laborum consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco.</p>
<p class="BLACC-right"><button class="BLACC-button BLACC-black" onclick="myFunction('demo3')" id="myBtn"><b>View Colleges </b> <span class="BLACC-tag BLACC-white">1</span></button></p>
<p class="BLACC-clear"></p>
<div class="BLACC-row BLACC-margin-bottom" id="demo3" style="display:none">
<hr>
<div class="BLACC-col l2 m3">
</div>
<div class="BLACC-col l10 m9">
<a href="#" target="_self"><h4 class="BLACC-hover-text-green">College Name <span class="BLACC-opacity BLACC-medium"></span></h4></a>
<!--
<h4>Member Count : <span class="BLACC-opacity BLACC-medium"> </span></h4>
<p>Great blog post! Following</p>
-->
</div>
</div>
</div>
</div>
<hr>
<!-- END BLOG ENTRIES -->
</div>
<!-- About/Information menu -->
<div class="BLACC-col l4">
<!-- About Card -->
<div class="BLACC-white BLACC-margin">
<div class="BLACC-container BLACC-black">
<h4>Alabama Memo</h4>
<p>This is the home page of the Student Government Body, which is an educational nonprofit incorporated within the state of Alabama advocating for student's rights and conditions. From the beginnig of the develoment of this initial home page, the front-end was intended to optimize navigation with minimization on graphical display; functionality over appearances.</p>
</div>
</div>
<hr>
<!-- Posts -->
<div class="BLACC-black BLACC-margin">
<div class="BLACC-container BLACC-padding BLACC-black">
<h4 style="color: yellow;">Popular Student Governments</h4>
</div>
<ul class="BLACC-ul BLACC-black">
<li class="BLACC-padding-16">
<img src="./New_Nexxus_Background.jpg" alt="Image" class="BLACC-left BLACC-margin-right" style="width: 50px">
<span class="BLACC-large">Denimkgjghhjkhgjgjhgfhfhfh</span>
<br>
<a href="#" target=""><span>Sed mattis nunc</span></a>
</li>
<li class="BLACC-padding-16">
<img src="./New_Nexxus_Background.jpg" alt="Image" class="BLACC-left BLACC-margin-right" style="width: 50px">
<span class="BLACC-large">Denimkgjghhjkhgjgjhgfhfhfh</span>
<br>
<a href="#" target=""><span>Sed mattis nunc</span></a>
</li>
<li class="BLACC-padding-16">
<img src="./New_Nexxus_Background.jpg" alt="Image" class="BLACC-left BLACC-margin-right" style="width: 50px">
<span class="BLACC-large">Denimkgjghhjkhgjgjhgfhfhfh</span>
<br>
<a href="#" target=""><span>Sed mattis nunc</span></a>
</li>
</ul>
</div>
<hr>
<!-- Advertising -->
<div class="BLACC-white BLACC-margin">
<div class="BLACC-container BLACC-padding BLACC-black">
<h4>Advertise</h4>
</div>
<div class="BLACC-container BLACC-white">
<div class="BLACC-container BLACC-display-container BLACC-light-grey BLACC-section" style="height:200px">
<span class="BLACC-display-middle">Your AD Here</span>
</div>
</div>
</div>
<hr>
<!-- Tags -->
<div class="BLACC-white BLACC-margin BLACC-theme-red-d4">
<div class="BLACC-container BLACC-padding BLACC-black">
<h4>Tags</h4>
</div>
<div class="BLACC-container BLACC-white">
<p>
<a href="#" target="_self"><span class="BLACC-tag BLACC-amber BLACC-margin-bottom">Autauga</span> </a>
<a href="#" target="_self"><span class="BLACC-tag BLACC-aqua BLACC-margin-bottom">Baldwin</span> </a>
<a href="#" target="_self"><span class="BLACC-tag BLACC-blue-grey BLACC-margin-bottom">Barbour</span> </a>
<a href="#" target="_self"><span class="BLACC-tag BLACC-light-blue BLACC-margin-bottom">Bibb</span> </a>
<a href="#" target="_self"><span class="BLACC-tag BLACC-cyan BLACC-margin-bottom">Bullock</span> </a>
<a href="#" target="_self"><span class="BLACC-tag BLACC-light-green BLACC-margin-bottom">Butler</span> </a>
<a href="#" target="_self"><span class="BLACC-tag BLACC-indigo BLACC-margin-bottom">Calhoun</span> </a>
<a href="#" target="_self"><span class="BLACC-tag BLACC-lime BLACC-margin-bottom">Chambers</span> </a>
<a href="#" target="_self"><span class="BLACC-tag BLACC-khaki BLACC-margin-bottom">Cherokee</span> </a>
<a href="#" target="_self"><span class="BLACC-tag BLACC-sand BLACC-margin-bottom">Chilton</span> </a>
<a href="#" target="_self"><span class="BLACC-tag BLACC-teal BLACC-margin-bottom">Choctaw</span> </a>
<a href="#" target="_self"><span class="BLACC-tag BLACC-amber BLACC-margin-bottom">Clarke</span> </a>
<a href="#" target="_self"><span class="BLACC-tag BLACC-aqua BLACC-margin-bottom">Clay</span> </a>
<a href="#" target="_self"><span class="BLACC-tag BLACC-blue-grey BLACC-margin-bottom">Cleburne</span> </a>
<a href="#" target="_self"><span class="BLACC-tag BLACC-light-blue BLACC-margin-bottom">Coffee</span> </a>
<a href="#" target="_self"><span class="BLACC-tag BLACC-cyan BLACC-margin-bottom">Colbert</span> </a>
<a href="#" target="_self"><span class="BLACC-tag BLACC-light-green BLACC-margin-bottom">Conecuh</span> </a>
<a href="#" target="_self"><span class="BLACC-tag BLACC-indigo BLACC-margin-bottom">Coosa</span> </a>
<a href="#" target="_self"><span class="BLACC-tag BLACC-lime BLACC-margin-bottom">Covington</span> </a>
<a href="#" target="_self"><span class="BLACC-tag BLACC-khaki BLACC-margin-bottom">Cullman</span> </a>
<a href="#" target="_self"><span class="BLACC-tag BLACC-sand BLACC-margin-bottom">Dale</span> </a>
<a href="#" target="_self"><span class="BLACC-tag BLACC-teal BLACC-margin-bottom">Dallas</span> </a>
<a href="#" target="_self"><span class="BLACC-tag BLACC-amber BLACC-margin-bottom">Dekalib</span> </a>
<a href="#" target="_self"><span class="BLACC-tag BLACC-aqua BLACC-margin-bottom">Elmore</span> </a>
<a href="#" target="_self"><span class="BLACC-tag BLACC-blue-grey BLACC-margin-bottom">Escambia</span> </a>
<a href="#" target="_self"><span class="BLACC-tag BLACC-light-blue BLACC-margin-bottom">Etowah</span> </a>
<a href="#" target="_self"><span class="BLACC-tag BLACC-cyan BLACC-margin-bottom">Fayette</span> </a>
<a href="#" target="_self"><span class="BLACC-tag BLACC-light-green BLACC-margin-bottom">Franklin</span> </a>
<a href="#" target="_self"><span class="BLACC-tag BLACC-indigo BLACC-margin-bottom">Geneva</span> </a>
<a href="#" target="_self"><span class="BLACC-tag BLACC-lime BLACC-margin-bottom">Greene</span> </a>
<a href="#" target="_self"><span class="BLACC-tag BLACC-sand BLACC-margin-bottom">Hale</span> </a>
<a href="#" target="_self"><span class="BLACC-tag BLACC-teal BLACC-margin-bottom">Henry</span> </a>
<a href="#" target="_self"><span class="BLACC-tag BLACC-amber BLACC-margin-bottom">Houston</span> </a>
<a href="#" target="_self"><span class="BLACC-tag BLACC-aqua BLACC-margin-bottom">Jackson</span> </a>
<a href="#" target="_self"><span class="BLACC-tag BLACC-blue-grey BLACC-margin-bottom">Jeffereson</span> </a>
<a href="#" target="_self"><span class="BLACC-tag BLACC-light-blue BLACC-margin-bottom">Lamar</span> </a>
<a href="#" target="_self"><span class="BLACC-tag BLACC-cyan BLACC-margin-bottom">Lauderdale</span> </a>
<a href="#" target="_self"><span class="BLACC-tag BLACC-light-green BLACC-margin-bottom">Lawrence</span> </a>
<a href="#" target="_self"><span class="BLACC-tag BLACC-indigo BLACC-margin-bottom">Lee</span> </a>
<a href="#" target="_self"><span class="BLACC-tag BLACC-lime BLACC-margin-bottom">Limestone</span> </a>
<a href="#" target="_self"><span class="BLACC-tag BLACC-sand BLACC-margin-bottom">Lowndes</span> </a>
<a href="#" target="_self"><span class="BLACC-tag BLACC-teal BLACC-margin-bottom">Macon</span> </a>
<a href="#" target="_self"><span class="BLACC-tag BLACC-amber BLACC-margin-bottom">Madison</span> </a>
<a href="#" target="_self"><span class="BLACC-tag BLACC-aqua BLACC-margin-bottom">Marengo</span> </a>
<a href="#" target="_self"><span class="BLACC-tag BLACC-blue-grey BLACC-margin-bottom">Marion</span> </a>
<a href="#" target="_self"><span class="BLACC-tag BLACC-light-blue BLACC-margin-bottom">Marshall</span> </a>
<a href="#" target="_self"><span class="BLACC-tag BLACC-cyan BLACC-margin-bottom">Mobile</span> </a>
<a href="#" target="_self"><span class="BLACC-tag BLACC-light-green BLACC-margin-bottom">Monroe</span> </a>
<a href="#" target="_self"><span class="BLACC-tag BLACC-indigo BLACC-margin-bottom">Montgomery</span> </a>
<a href="#" target="_self"><span class="BLACC-tag BLACC-lime BLACC-margin-bottom">Morgan</span> </a>
<a href="#" target="_self"><span class="BLACC-tag BLACC-sand BLACC-margin-bottom">Perry</span> </a>
<a href="#" target="_self"><span class="BLACC-tag BLACC-teal BLACC-margin-bottom">Pickens</span> </a>
<a href="#" target="_self"><span class="BLACC-tag BLACC-amber BLACC-margin-bottom">Pike</span> </a>
<a href="#" target="_self"><span class="BLACC-tag BLACC-aqua BLACC-margin-bottom">Randolph</span> </a>
<a href="#" target="_self"><span class="BLACC-tag BLACC-blue-grey BLACC-margin-bottom">Russell</span> </a>
<a href="#" target="_self"><span class="BLACC-tag BLACC-light-blue BLACC-margin-bottom">St. Clair</span> </a>
<a href="#" target="_self"><span class="BLACC-tag BLACC-cyan BLACC-margin-bottom">Shelby</span> </a>
<a href="#" target="_self"><span class="BLACC-tag BLACC-light-green BLACC-margin-bottom">Sumter</span> </a>
<a href="#" target="_self"><span class="BLACC-tag BLACC-indigo BLACC-margin-bottom">Talladega</span> </a>
<a href="#" target="_self"><span class="BLACC-tag BLACC-lime BLACC-margin-bottom">Tallapoosa</span> </a>
<a href="#" target="_self"><span class="BLACC-tag BLACC-sand BLACC-margin-bottom">Tuscaloosa</span> </a>
<a href="#" target="_self"><span class="BLACC-tag BLACC-teal BLACC-margin-bottom">Walker</span> </a>
<a href="#" target="_self"><span class="BLACC-tag BLACC-amber BLACC-margin-bottom">Washington</span> </a>
<a href="#" target="_self"><span class="BLACC-tag BLACC-aqua BLACC-margin-bottom">Wilcox</span> </a>
<a href="#" target="_self"><span class="BLACC-tag BLACC-blue-grey BLACC-margin-bottom">Winston</span> </a>
</p>
</div>
</div>
<hr>
<!-- Inspiration
<div class="BLACC-white BLACC-margin">
<div class="BLACC-container BLACC-padding BLACC-black">
<h4>Inspiration</h4>
</div>
<div class="BLACC-row-padding BLACC-white">
<div class="BLACC-col s6">
<p><img src="/BLACCimages/jeans.jpg" alt="Jeans" style="width:100%"></p>
<p><img src="/BLACCimages/team1.jpg" alt="Jeans" style="width:100%"></p>
</div>
<div class="BLACC-col s6">
<p><img src="/BLACCimages/avatar_hat.jpg" alt="Men in Hats" style="width:100%" class="BLACC-grayscale"></p>
<p><img src="/BLACCimages/team4.jpg" alt="Jeans" style="width:100%"></p>
</div>
</div>
</div>
-->
<hr>
<!--
<div class="BLACC-white BLACC-margin">
<div class="BLACC-container BLACC-padding BLACC-black">
<h4>Follow Me</h4>
</div>
<div class="BLACC-container BLACC-xlarge BLACC-padding">
<i class="fa fa-facebook-official BLACC-hover-opacity"></i>
<i class="fa fa-instagram BLACC-hover-opacity"></i>
<i class="fa fa-snapchat BLACC-hover-opacity"></i>
<i class="fa fa-pinterest-p BLACC-hover-opacity"></i>
<i class="fa fa-twitter BLACC-hover-opacity"></i>
<i class="fa fa-linkedin BLACC-hover-opacity"></i>
</div>
</div>
-->
<hr>
<!-- Subscribe
<div class="BLACC-white BLACC-margin">
<div class="BLACC-container BLACC-padding BLACC-black">
<h4>Subscribe</h4>
</div>
<div class="BLACC-container BLACC-white">
<p>Enter your e-mail below and get notified on the latest blog posts.</p>
<p><input class="BLACC-input BLACC-border" type="text" placeholder="Enter e-mail" style="width:100%"></p>
<p><button type="button" onclick="document.getElementById('subscribe').style.display='block'" class="BLACC-button BLACC-block BLACC-red" action="mailto:blaccconnect@gmail.com" method="post">Subscribe</button></p>
</div>
</div>
-->
<!-- END About/Intro Menu -->
</div>
<!-- END GRID -->
</div>
<!-- END BLACC-content -->
</div>
<!-- Subscribe Modal
<div id="subscribe" class="BLACC-modal BLACC-animate-opacity">
<div class="BLACC-modal-content" style="padding:32px">
<div class="BLACC-container BLACC-white">
<i onclick="document.getElementById('subscribe').style.display='none'" class="fa fa-remove BLACC-transparent BLACC-button BLACC-xlarge BLACC-right"></i>
<h2 class="BLACC-wide">SUBSCRIBE</h2>
<p>Join my mailing list to receive updates on the latest blog posts and other things.</p>
<p><input class="BLACC-input BLACC-border" type="text" placeholder="Enter e-mail"></p>
<button type="button" class="BLACC-button BLACC-block BLACC-padding-large BLACC-red BLACC-margin-bottom" onclick="document.getElementById('subscribe').style.display='none'" action="mailto:blaccconnect@gmail.com" method="POST">Subscribe</button>
</div>
</div>
</div>
-->
<div data-role="footer" style="background-color: black;">
<!-- Footer -->
<p style="color: white;"> Made By B.L.A.C.C. Corportation (c) 2024</p>
<br>
<hr>
<br>
<ul class="lileft BLACC-hover-blue">
<li><a href="https://blaccenterprise.github.io/blacccorporation/index.html" style="color: white;" class="BLACC-hover-red BLACC-hover-text-white">B.L.A.C.C. Corporation </a>
</ul>
<ul class="lileft">
<li><a href="https://blaccenterprise.github.io/blacc/BLACC_Search.html" style="color: white;" class="BLACC-hover-red BLACC-hover-text-white">B.L.A.C.C. Search</a>
</ul>
<ul class="lileft">
<li><a href="https://blaccenterprise.github.io/blacccorporation/B.L.A.C.C.CorporationTERMSANDCONDITIONS.html" target="_self" style="color: white;" class="BLACC-hover-red BLACC-hover-text-white">Terms</a>
</ul>
<ul class="lileft">
<li><a href="https://blaccenterprise.github.io/blacccorporation/PRIVACYPOLICYFORB.L.A.C.C.CORPORATION.html" target="_self" style="color: white;" class="BLACC-hover-red BLACC-hover-text-white">Privacy Policy</a>
</ul>
<ul class="lileft">
<li><a href="https://blaccenterprise.github.io/blacccorporation/Subscribe_Form.html" style="color: white;" class="BLACC-hover-red BLACC-hover-text-white">Subscribe</a>
</ul>
<ul class="lileft">
<li><a href="https://blaccenterprise.github.io/blaccconnect/Level_1_Access/United_States_Selection_Level_1_Access.html" style="color: white;" class="BLACC-hover-red BLACC-hover-text-white">B.L.A.C.C. Connect</a>
</ul>
<br>
<hr>
<br>
<p style="text-align: right; color: white;">Powered by <a href="https://blaccenterprise.github.io/blacccorporation/Website_Template_BLACC_Corporation_Computer_Science_Project_BLACC_Server.html" title="B.L.A.C.C." class="BLACC-hover-text-green" style="color: white;">B.L.A.C.C. Server</a>~Created by <a href="https://blaccenterprise.github.io/blacccorporation/index.html" title="B.L.A.C.C." class="BLACC-hover-text-green" style="color: white;">B.L.A.C.C. Corporation</a></p>
<script>
var prevScrollpos = window.pageYOffset;
window.onscroll = function() {
var currentScrollPos = window.pageYOffset;
if (prevScrollpos > currentScrollPos) {
document.getElementById("navbar1").style.top = "0";
} else {
document.getElementById("navbar1").style.top = "-600px";
}
prevScrollpos = currentScrollPos;
}
</script>
<script>
var prevScrollpos = window.pageYOffset;
window.onscroll = function() {
var currentScrollPos = window.pageYOffset;
if (prevScrollpos > currentScrollPos) {
document.getElementById("navbar").style.top = "0";
} else {
document.getElementById("navbar").style.top = "-400px";
}
prevScrollpos = currentScrollPos;
}
</script>
<script>
// Toggle between hiding and showing blog replies/comments
document.getElementById("myBtn").click();
function myFunction(id) {
var x = document.getElementById(id);
if (x.className.indexOf("BLACC-show") == -1) {
x.className += " BLACC-show";
} else {
x.className = x.className.replace(" BLACC-show", "");
}
}
function likeFunction(x) {
x.style.fontWeight = "bold";
x.innerHTML = "✓ Liked";
}
</script>
</div>
</div>
<!-- Counties
Autauga
Baldwin
Barbour
Bibb
Blount
Bullock
Butler
Calhoun
Chambers
Cherokee
Chilton
Choctaw
Clarke
Clay
Cleburne
Coffee
Colbert
Conecuh
Coosa
Covington
Cullman
Dale
Dallas
Dekalib
Elmore
Escambia
Etowah
Fayette
Franklin
Geneva
Greene
Hale
Henry
Houston
Jackson
Jeffereson
Lamar
Lauderdale
Lawrence
Lee
Limestone
Lowndes
Macon
Madison
Marengo
Marion
Marshall
Mobile
Monroe
Montgomery
Morgan
Perry
Pickens
Pike
Randolph
Russell
St. Clair
Shelby
Sumter
Talladega
Tallapoosa
Tuscaloosa
Walker
Washington
Wilcox
Winston
--> <!--Alabama Counties -->
<div data-role="page" id="alaska">
<style>
h1,h2,h3,h4,h5,h6 {font-family: "Oswald"}
body {font-family: "Open Sans"}
</style>
<div data-role="header">
<style>
#navbar1 {
background-color: #333;
position: fixed;
top: 0;
width: 100%;
display: block;
transition: top 2s;
}
#navbar1 a {
float: left;
display: block;
color: blue;
text-align: center;
padding: 15px;
text-decoration: none;
font-size: 17px;
}
#navbar1 a:hover {
background-color: blue;
color: blue;
}
a {
text-decoration: none;
}
</style>
<header class="BLACC-container BLACC-center BLACC-blue BLACC-top" id="navbar">
<a href="#newnexxushomepage" class="BLACC-bar-item BLACC-button BLACC-hover-blue BLACC-hover-text-white BLACC-text-black"><b>XX</b> New Nexxus</a>
<h1 class="BLACC-xxxlarge" style="font-family: Georgia;"><b>New Nexxus | The State Of Alaska</b></h1>
<h6 style="color: black;">Welcome to the Student Government <span class="BLACC-tag">Alaska</span></h6>
</header>
<!-- Image header -->
<header class="BLACC-display-container BLACC-wide">
<img class="BLACC-image" src="./New_Nexxus_Background.jpg" alt="Fashion Blog" width="1600" height="1060">
<div class="BLACC-display-left BLACC-padding-large">
</div>
</header>
</div>
<div data-role="main" class="ui-content">
<!-- Grid -->
<div class="BLACC-row BLACC-padding BLACC-border">
<!-- Blog entries -->
<div class="BLACC-col l8 s12">
<!-- Blog entry -->
<div class="BLACC-container BLACC-white BLACC-margin BLACC-padding-large">
<div class="BLACC-center">
<h3>County Name</h3>
<h5>Number of Student Governments: <span class="BLACC-opacity">23</span></h5>
</div>
<div class="BLACC-justify">
<!--
<img src="/BLACCimages/girl_hat.jpg" alt="Girl Hat" style="width:100%" class="BLACC-padding-16">
-->
<p><strong>More Hats!</strong> </p>
<p>Sunt in culpa qui officia deserunt mollit anim id est laborum consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco.</p>
<p class="BLACC-right"><button class="BLACC-button BLACC-black" onclick="myFunction('demo4')" id="myBtn"><b>View Colleges </b> <span class="BLACC-tag BLACC-white">1</span></button></p>
<p class="BLACC-clear"></p>
<div class="BLACC-row BLACC-margin-bottom" id="demo4" style="display:none">
<hr>
<div class="BLACC-col l2 m3">
</div>
<div class="BLACC-col l10 m9">
<a href="#" target="_self"><h4 class="BLACC-hover-text-green">College Name <span class="BLACC-opacity BLACC-medium"></span></h4></a>
<!--
<h4>Member Count : <span class="BLACC-opacity BLACC-medium"> </span></h4>
<p>Great blog post! Following</p>
-->
</div>
</div>
</div>
</div>
<hr>
<!-- Blog entry -->
<div class="BLACC-container BLACC-white BLACC-margin BLACC-padding-large">
<div class="BLACC-center">
<h3>County Name</h3>
<h5>Number of Student Governments: <span class="BLACC-opacity">23</span></h5>
</div>
<div class="BLACC-justify">
<!--
<img src="/BLACCimages/girl_hat.jpg" alt="Girl Hat" style="width:100%" class="BLACC-padding-16">
-->
<p><strong>More Hats!</strong> </p>
<p>Sunt in culpa qui officia deserunt mollit anim id est laborum consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco.</p>
<p class="BLACC-right"><button class="BLACC-button BLACC-black" onclick="myFunction('demo5')" id="myBtn"><b>View Colleges </b> <span class="BLACC-tag BLACC-white">1</span></button></p>
<p class="BLACC-clear"></p>
<div class="BLACC-row BLACC-margin-bottom" id="demo5" style="display:none">
<hr>
<div class="BLACC-col l2 m3">
</div>
<div class="BLACC-col l10 m9">
<a href="#" target="_self"><h4 class="BLACC-hover-text-green">College Name <span class="BLACC-opacity BLACC-medium"></span></h4></a>
<!--
<h4>Member Count : <span class="BLACC-opacity BLACC-medium"> </span></h4>
<p>Great blog post! Following</p>
-->
</div>
</div>
</div>
</div>
<hr>
<!-- Blog entry -->
<div class="BLACC-container BLACC-white BLACC-margin BLACC-padding-large">
<div class="BLACC-center">
<h3>County Name</h3>
<h5>Number of Student Governments: <span class="BLACC-opacity">23</span></h5>
</div>
<div class="BLACC-justify">
<!--
<img src="/BLACCimages/girl_hat.jpg" alt="Girl Hat" style="width:100%" class="BLACC-padding-16">
-->
<p><strong>More Hats!</strong> </p>
<p>Sunt in culpa qui officia deserunt mollit anim id est laborum consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco.</p>
<p class="BLACC-right"><button class="BLACC-button BLACC-black" onclick="myFunction('demo6')" id="myBtn"><b>View Colleges </b> <span class="BLACC-tag BLACC-white">1</span></button></p>
<p class="BLACC-clear"></p>
<div class="BLACC-row BLACC-margin-bottom" id="demo6" style="display:none">
<hr>
<div class="BLACC-col l2 m3">
</div>
<div class="BLACC-col l10 m9">
<a href="#" target="_self"><h4 class="BLACC-hover-text-green">College Name <span class="BLACC-opacity BLACC-medium"></span></h4></a>
<!--
<h4>Member Count : <span class="BLACC-opacity BLACC-medium"> </span></h4>
<p>Great blog post! Following</p>
-->
</div>
</div>
</div>
</div>
<hr>
<!-- END BLOG ENTRIES -->
</div>
<!-- About/Information menu -->
<div class="BLACC-col l4">
<!-- About Card -->
<div class="BLACC-white BLACC-margin">
<div class="BLACC-container BLACC-black">
<h4>Alaska Memo</h4>
<p>This is the home page of the Student Government Body, which is an educational nonprofit incorporated within the state of Alaska advocating for student's rights and conditions. From the beginnig of the develoment of this initial home page, the front-end was intended to optimize navigation with minimization on graphical display; functionality over appearances.</p>
</div>
</div>
<hr>
<!-- Posts -->
<div class="BLACC-black BLACC-margin">
<div class="BLACC-container BLACC-padding BLACC-black">
<h4 style="color: yellow;">Popular Student Governments</h4>
</div>
<ul class="BLACC-ul BLACC-black">
<li class="BLACC-padding-16">
<img src="./New_Nexxus_Background.jpg" alt="Image" class="BLACC-left BLACC-margin-right" style="width: 50px">
<span class="BLACC-large">Denimkgjghhjkhgjgjhgfhfhfh</span>
<br>
<a href="#" target=""><span>Sed mattis nunc</span></a>
</li>
<li class="BLACC-padding-16">
<img src="./New_Nexxus_Background.jpg" alt="Image" class="BLACC-left BLACC-margin-right" style="width: 50px">
<span class="BLACC-large">Denimkgjghhjkhgjgjhgfhfhfh</span>
<br>
<a href="#" target=""><span>Sed mattis nunc</span></a>
</li>
<li class="BLACC-padding-16">
<img src="./New_Nexxus_Background.jpg" alt="Image" class="BLACC-left BLACC-margin-right" style="width: 50px">
<span class="BLACC-large">Denimkgjghhjkhgjgjhgfhfhfh</span>
<br>
<a href="#" target=""><span>Sed mattis nunc</span></a>
</li>
</ul>
</div>
<hr>
<!-- Advertising -->
<div class="BLACC-white BLACC-margin">
<div class="BLACC-container BLACC-padding BLACC-black">
<h4>Advertise</h4>
</div>
<div class="BLACC-container BLACC-white">
<div class="BLACC-container BLACC-display-container BLACC-light-grey BLACC-section" style="height:200px">
<span class="BLACC-display-middle">Your AD Here</span>
</div>
</div>
</div>
<hr>
<!-- Tags -->
<div class="BLACC-white BLACC-margin">
<div class="BLACC-container BLACC-padding BLACC-black">
<h4>Tags</h4>
</div>
<div class="BLACC-container BLACC-white">
<p>
<a href="#" target="_self"><span class="BLACC-tag BLACC-black BLACC-margin-bottom">Fashion</span> </a>
<a href="#" target="_self"><span class="BLACC-tag BLACC-black BLACC-margin-bottom">New York</span> </a>
<a href="#" target="_self"><span class="BLACC-tag BLACC-black BLACC-margin-bottom">London</span> </a>
<a href="#" target="_self"><span class="BLACC-tag BLACC-black BLACC-margin-bottom">Hats</span> </a>
<a href="#" target="_self"><span class="BLACC-tag BLACC-black BLACC-margin-bottom">Norway</span> </a>
<a href="#" target="_self"><span class="BLACC-tag BLACC-black BLACC-margin-bottom">Sweaters</span> </a>
<a href="#" target="_self"><span class="BLACC-tag BLACC-black BLACC-margin-bottom">Ideas</span> </a>
<a href="#" target="_self"><span class="BLACC-tag BLACC-black BLACC-margin-bottom">Deals</span> </a>
<a href="#" target="_self"><span class="BLACC-tag BLACC-black BLACC-margin-bottom">Accessories</span> </a>
<a href="#" target="_self"><span class="BLACC-tag BLACC-black BLACC-margin-bottom">News</span> </a>
<a href="#" target="_self"><span class="BLACC-tag BLACC-black BLACC-margin-bottom">Clothing</span> </a>
<a href="#" target="_self"><span class="BLACC-tag BLACC-black BLACC-margin-bottom">Shopping</span> </a>
<a href="#" target="_self"><span class="BLACC-tag BLACC-black BLACC-margin-bottom">Jeans</span> </a>
<a href="#" target="_self"><span class="BLACC-tag BLACC-black BLACC-margin-bottom">Trends</span> </a>
</p>
</div>
</div>
<hr>
<!-- Inspiration
<div class="BLACC-white BLACC-margin">
<div class="BLACC-container BLACC-padding BLACC-black">
<h4>Inspiration</h4>
</div>