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 
<!DOCTYPE html>
<html lang="en">
   <head>
      <meta charset="UTF-8">
      <!-- is there a way to text-transform a title in css? or do i have to always caps lock here !-->
      <title>$DIR&gt;EMPTINESS&gt;META.HTML</title>
      <link href="/css/font.css" rel="stylesheet" type="text/css" media="all" />
      <link href="/css/meta.css" rel="stylesheet" type="text/css" media="all" />
   </head>
   <body>
      <!-- song is america online by the midnight
      this album was the soundtrack of so many hours of the pandemic
      where do i put the play button though? !-->
      <audio id="wav" crossorigin="anonymous" src="/music/america.mp3"></audio>
      <div class="sublinks">
         <!-- the below are all clickable links that fall under "meta"!-->
         <a href="/rules.html">rules.html</a>
         <a href="/changelog.html">changelog.html</a>
         <a href="/archive.html">archive.html</a>
         <a href="/sitemap.html">sitemap.html</a>
      </div>
      <div class="navlinks">
         <!-- the below are all clickable links !-->
         <a href="/index.html">index.html</a>
         <a href="/audio.html">audio.html</a>
         <a href="/meatspace.html">meatspace.html</a>
         <!-- you need to start new pixel projects or just delete the page !-->
         <a href="/pixel.html">pixel.html</a>
         <a href="/links.html">links.html</a>
      </div>
      <script>
         let audio = document.getElementById("wav"),
            play_btn = document.getElementById("playbutton"),
            isPlaying = !1;
         function playpauseTrack() {
            isPlaying ? pauseTrack() : playTrack();
         }
         function playTrack() {
            audio.play();
               (isPlaying = !0),
               (play_btn.style.color = "#66d9ef");
         }
         function pauseTrack() {
            audio.pause();
               (isPlaying = !1),
               (play_btn.style.color = "#8f908a"); //this is a hint of where the play button is.
         }
      </script>
   </body>
</html>