50 lines
1.6 KiB
HTML
50 lines
1.6 KiB
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>LimePot's Website</title>
|
|
<link rel="stylesheet" href="style.css">
|
|
</head>
|
|
<body>
|
|
<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>
|
|
</section>
|
|
<section id="projects">
|
|
<h2>Projects</h2>
|
|
<ul>
|
|
<li>Minecraft Mod: SpaceMod</li>
|
|
<li>Website: limepot.xyz</li>
|
|
<li>Game: Galactic Adventures</li>
|
|
</ul>
|
|
</section>
|
|
<section id="contact">
|
|
<h2>Contact</h2>
|
|
<p>You can contact me through email at <a href="mailto:limepot@gmail.com">limepot@gmail.com</a> or by filling out the form below:</p>
|
|
<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>
|
|
</section>
|
|
</main>
|
|
<footer>
|
|
<p>Copyright 2022 LimePot</p>
|
|
</footer>
|
|
</body>
|
|
</html>
|