2022-12-23 18:16:37 -07:00
<!DOCTYPE html>
< html >
< head >
< meta charset = "utf-8" >
< title > LimePot's Website< / title >
< link rel = "stylesheet" href = "style.css" >
< / head >
< body >
2022-12-23 18:53:22 -07:00
< button id = "toggle-dark-light-mode" > Toggle Dark/Light Mode< / button >
2022-12-23 18:16:37 -07:00
< header >
< h1 > Welcome to LimePot's Website!< / h1 >
< nav >
< ul >
< li > < a href = "#about" > About< / a > < / li >
< li > < a href = "#projects" > Projects< / a > < / li >
< li > < a href = "#contact" > Contact< / a > < / li >
< / ul >
< / nav >
< / header >
< main >
< section id = "about" >
< h2 > About< / h2 >
< p > Hi, my name is LimePot and I am a developer and gamer. I enjoy creating websites, mods, and games in my free time.< / p >
2022-12-23 18:20:08 -07:00
< p > I have been interested in technology and programming since I was a kid, and I have always loved the idea of being able to create and build things using code. I have spent many hours learning and experimenting with different programming languages and technologies, and I am always eager to learn more and improve my skills.< / p >
< p > In my free time, I enjoy playing games, especially Minecraft and other sandbox games. I also enjoy creating mods and other custom content for these games, as it allows me to express my creativity and share my creations with others.< / p >
2022-12-23 18:16:37 -07:00
< / section >
2022-12-23 18:20:08 -07:00
2022-12-23 18:16:37 -07:00
< section id = "projects" >
< h2 > Projects< / h2 >
< ul >
< li > Minecraft Mod: SpaceMod< / li >
< li > Website: limepot.xyz< / li >
< li > Game: Galactic Adventures< / li >
< / ul >
2022-12-23 18:23:32 -07:00
< p > Click on the links above to learn more about my projects or check out my < a href = "https://github.com/limepotato" > GitHub profile< / a > for more information and updates.< / p >
2022-12-23 18:16:37 -07:00
< / section >
2022-12-23 18:20:08 -07:00
2022-12-23 18:16:37 -07:00
< section id = "contact" >
< h2 > Contact< / h2 >
2022-12-23 18:21:10 -07:00
< p > You can contact me through email at < a href = "mailto:nelle@limepot.xyz" > nelle@limepot.xyz< / a > or by filling out the form below:< / p >
2022-12-23 18:16:37 -07:00
< form action = "/contact" method = "post" >
< label for = "name" > Name:< / label > < br >
< input type = "text" id = "name" name = "name" > < br >
< label for = "email" > Email:< / label > < br >
< input type = "email" id = "email" name = "email" > < br >
< label for = "message" > Message:< / label > < br >
< textarea id = "message" name = "message" > < / textarea > < br >
< input type = "submit" value = "Submit" >
< / form >
2022-12-23 18:20:08 -07:00
< p > You can also find me on social media at the following links:< / p >
< ul >
< li > < a href = "https://twitter.com/limepot" > Twitter< / a > < / li >
< / ul >
2022-12-23 18:16:37 -07:00
< / section >
2022-12-23 18:20:08 -07:00
2022-12-23 18:21:10 -07:00
2022-12-23 18:16:37 -07:00
< / main >
< footer >
< p > Copyright 2022 LimePot< / p >
< / footer >
2022-12-23 18:53:22 -07:00
< script >
const toggleButton = document.getElementById('toggle-dark-light-mode');
toggleButton.addEventListener('click', () => {
document.body.classList.toggle('darkmode');
document.body.classList.toggle('lightmode');
});
< / script >
2022-12-23 18:16:37 -07:00
< / body >
< / html >