weight-of-waiting/contact.html

110 lines
3.4 KiB
HTML
Raw Normal View History

2026-08-20 22:01:07 +02:00
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Contact Kimberly Bennett</title>
<meta property="og:type" content="website">
<meta property="og:title" content="Contact Kimberly Bennett">
<meta property="og:description" content="Contact Kimberly Bennett Home About Projects Contact Get in Touch Name: Email: Message: Send Message &amp;copy; 2023 Kimberly Bennett">
<meta property="og:url" content="https://kimberly-bennett.4ort.net/contact.html">
<meta name="twitter:card" content="summary">
<meta name="description" content="Contact Kimberly Bennett Home About Projects Contact Get in Touch Name: Email: Message: Send Message &amp;copy; 2023 Kimberly Bennett">
<style>
body {
font-family: 'Courier New', monospace;
background-color: #000000;
color: #00ff00;
margin: 0;
padding: 0;
}
header {
background-color: #000000;
color: #00ff00;
padding: 1em;
text-align: center;
}
nav {
display: flex;
justify-content: center;
background-color: #000000;
padding: 0.5em;
}
nav a {
color: #00ff00;
margin: 0 1em;
text-decoration: none;
}
nav a:hover {
text-decoration: underline;
}
main {
padding: 1em;
}
footer {
background-color: #000000;
color: #00ff00;
text-align: center;
padding: 1em;
position: fixed;
width: 100%;
bottom: 0;
}
.contact-form {
max-width: 600px;
margin: 0 auto;
}
.contact-form label {
display: block;
margin-bottom: 0.5em;
}
.contact-form input, .contact-form textarea {
width: 100%;
padding: 0.5em;
margin-bottom: 1em;
background-color: #000000;
color: #00ff00;
border: 1px solid #00ff00;
}
.contact-form button {
background-color: #00ff00;
color: #000000;
border: none;
padding: 0.5em 1em;
cursor: pointer;
}
</style>
<script defer src="https://analytics.4ort.xyz/script.js" data-website-id="d3ed927c-888a-4a6c-ae5f-0b1c613ddf5b"></script>
</head>
<body>
<header>
<h1>Contact Kimberly Bennett</h1>
</header>
<nav>
<a href="index.html">Home</a>
<a href="about.html">About</a>
<a href="projects.html">Projects</a>
<a href="contact.html">Contact</a>
</nav>
<main>
<section>
<h2>Get in Touch</h2>
<form class="contact-form">
<label for="name">Name:</label>
<input type="text" id="name" name="name" required>
<label for="email">Email:</label>
<input type="email" id="email" name="email" required>
<label for="message">Message:</label>
<textarea id="message" name="message" rows="5" required></textarea>
<button type="submit">Send Message</button>
</form>
</section>
</main>
<footer>
<p>&copy; 2023 Kimberly Bennett</p>
</footer>
</body>
</html>