- Complete PHP CMS with Bootstrap 5 - Multi-format content support (MD/PHP/HTML) - Dynamic navigation with collapsible folders - Search functionality with snippets - WCAG compliant design - Blog content imported from Edwin Noorlander's personal blog - README with project background and credits
36 lines
1.2 KiB
HTML
36 lines
1.2 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Contact Us</title>
|
|
</head>
|
|
<body>
|
|
<h1>Contact Us</h1>
|
|
|
|
<div class="contact-form">
|
|
<form>
|
|
<div class="mb-3">
|
|
<label for="name" class="form-label">Name</label>
|
|
<input type="text" class="form-control" id="name" placeholder="Your name">
|
|
</div>
|
|
<div class="mb-3">
|
|
<label for="email" class="form-label">Email</label>
|
|
<input type="email" class="form-control" id="email" placeholder="your@email.com">
|
|
</div>
|
|
<div class="mb-3">
|
|
<label for="message" class="form-label">Message</label>
|
|
<textarea class="form-control" id="message" rows="3"></textarea>
|
|
</div>
|
|
<button type="submit" class="btn btn-primary">Send Message</button>
|
|
</form>
|
|
</div>
|
|
|
|
<div class="contact-info mt-4">
|
|
<h3>Contact Information</h3>
|
|
<p><strong>Email:</strong> info@codepress.com</p>
|
|
<p><strong>Phone:</strong> +31 123 456 789</p>
|
|
<p><strong>Address:</strong> Amsterdam, Netherlands</p>
|
|
</div>
|
|
</body>
|
|
</html> |