This commit is contained in:
thaaoblues 2023-04-29 16:07:08 +02:00
parent a10f6ba9cc
commit 9b9e614eaf
2 changed files with 4 additions and 4 deletions

View file

@ -4,7 +4,7 @@
width: 100%; width: 100%;
height: 200%; height: 200%;
font-size: 10vh; font-size: 10vh;
color: rgb(196, 23, 23); color: rgb(230, 11, 11);
} }

View file

@ -12,10 +12,10 @@ include "assets/scripts/globals.php"
<ul> <ul>
<?php <?php
for($i = 0; $i <= sizeof($SITE_MAP,1); $i++){ for($i = 0; $i <= 17; $i++){
echo "<a href=\"".$SITE_MAP[$i][0]."\">".$SITE_MAP[$i][1]."</a>"; echo "<li><a href=\"".$SITE_MAP[$i][0]."\">".$SITE_MAP[$i][1]."</a></li>";
} }