This commit is contained in:
nelle 2022-12-23 18:16:37 -07:00
parent 58a6b22638
commit bfcfe4e9ee
2 changed files with 85 additions and 0 deletions

50
AI/index.html Normal file
View file

@ -0,0 +1,50 @@
<!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>

35
AI/style.css Normal file
View file

@ -0,0 +1,35 @@
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
}
header {
background-color: #333;
color: #fff;
display: flex;
justify-content: space-between;
align-items: center;
padding: 20px;
}
header h1 {
margin: 0;
}
header nav ul {
list-style: none;
margin: 0;
padding: 0;
display: flex;
}
header nav li {
margin-left: 20px;
}
header nav a {
color: #fff;
text-decoration: none;
}