<!DOCTYPE html> <html> <head> <meta charset = "utf-8" /> <title> Home </title> <!-- add icon link --> <link rel = "icon" href = "assets/obo-icon.png" type = "image/x-icon"> <link rel="stylesheet" type="text/css" href="style.css"> </head> <body> <div class="head"></div> <div class="navigation"> <div class="mTitle"></div> <div class="menuToggle"></div> <ul> <li class="list active" style="--clr:rgb(0, 196, 157);"> <a href="#"> <span class="icon"><ion-icon name="planet"></ion-icon></span> <span class="text">Home</span> </a> </li> <li class="list" style="--clr:rgb(0, 196, 157);"> <a href="about.html"> <span class="icon"><ion-icon name="egg"></ion-icon></span> <span class="text">About</span> </a> </li> <li class="list" style="--clr:rgb(0, 196, 157);"> <a href="projects.html"> <span class="icon"><ion-icon name="code-slash"></ion-icon></span> <span class="text">Projects</span> </a> </li> <li class="list" style="--clr:rgb(0, 196, 157);"> <a href="photography.html"> <span class="icon"><ion-icon name="camera"></ion-icon></span> <span class="text">Photography</span> </a> </li> <li class="list" style="--clr:rgb(0, 196, 157);"> <a href="videography.html"> <span class="icon"><ion-icon name="videocam"></ion-icon></span> <span class="text">Videography</span> </a> </li> <li class="list" style="--clr:rgb(0, 196, 157);"> <a href="discord.html"> <span class="icon"><ion-icon name="logo-discord"></ion-icon></span> <span class="text">Discord Server</span> </a> </li> <li class="list" style="--clr:rgb(0, 196, 157);"> <a href="old/index.html"> <span class="icon"><ion-icon name="archive"></ion-icon></span> <span class="text">Old Site</span> </a> </li> </ul> </div> <div class="content"> <br><br><br> <a href="#">0 Days since last incident.</a> <br><br> <p>"Forever - is composed of Nows</p> <p>`Tis not a different time -</p> <p>Except for Infiniteness -</p> <p>And Latitude of Home -</p> <br> <p>From this - experienced Here -</p> <p>Remove the Dates - to These -</p> <p>Let Months dissolve in further Months -</p> <p>And Years - exhale in Years ..."</p> <p>- Emily Dickinson</p> <br><br><br> <iframe style="border-radius:12px" src="https://open.spotify.com/embed/playlist/0UyMyPSrUMRJCOwUwplAjJ?utm_source=generator&theme=0" width="50%" height="380" frameBorder="0" allowfullscreen="" allow="autoplay; clipboard-write; encrypted-media; fullscreen; picture-in-picture"></iframe> </div> <script> const menuToggle = document.querySelector('.menuToggle'); const navigation = document.querySelector('.navigation'); menuToggle.onclick = function(){ navigation.classList.toggle('open') } const list = document.querySelectorALl('.list'); function activeLink(){ list.forEach((item) => item.classList.remove('active')); this.classList.add('active'); } list.forEach((item) => item.addEventListener('click',activeLink)) </script> <script type="module" src="https://unpkg.com/ionicons@5.5.2/dist/ionicons/ionicons.esm.js"></script> <script nomodule src="https://unpkg.com/ionicons@5.5.2/dist/ionicons/ionicons.js"></script> </body> </html>