limepot-xyz/index.html
LimePot c0536c83d8 Update index.html
Got rid of Spotify, as iframes are dangerous.
2022-12-20 13:57:47 -07:00

100 lines
No EOL
3.6 KiB
HTML

<!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>
</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>