mirror of
https://github.com/cmclark00/mintris.git
synced 2025-05-18 16:15:21 +01:00
116 lines
4.5 KiB
HTML
116 lines
4.5 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 - Pixel Mint Games</title>
|
||
|
<link rel="stylesheet" href="css/style.css">
|
||
|
<link rel="preconnect" href="https://fonts.googleapis.com">
|
||
|
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
||
|
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;700&display=swap" rel="stylesheet">
|
||
|
</head>
|
||
|
<body>
|
||
|
<header>
|
||
|
<div class="container">
|
||
|
<div class="logo">
|
||
|
<h1>Pixel Mint Games</h1>
|
||
|
</div>
|
||
|
<nav>
|
||
|
<ul>
|
||
|
<li><a href="index.html">Home</a></li>
|
||
|
<li><a href="games.html">Games</a></li>
|
||
|
<li><a href="about.html">About</a></li>
|
||
|
<li><a href="contact.html">Contact</a></li>
|
||
|
</ul>
|
||
|
</nav>
|
||
|
</div>
|
||
|
</header>
|
||
|
|
||
|
<section class="contact-section">
|
||
|
<div class="container">
|
||
|
<h2>Contact Us</h2>
|
||
|
<p class="contact-intro">Have questions, feedback, or just want to say hello? We'd love to hear from you!</p>
|
||
|
|
||
|
<div class="contact-content">
|
||
|
<div class="contact-info">
|
||
|
<h3>Get In Touch</h3>
|
||
|
<p>We aim to respond to all inquiries within 48 hours during business days.</p>
|
||
|
|
||
|
<div class="contact-methods">
|
||
|
<div class="contact-method">
|
||
|
<h4>General Inquiries</h4>
|
||
|
<p>Email: hello@pixelmintgames.com</p>
|
||
|
</div>
|
||
|
|
||
|
<div class="contact-method">
|
||
|
<h4>Support</h4>
|
||
|
<p>Email: support@pixelmintgames.com</p>
|
||
|
</div>
|
||
|
|
||
|
<div class="contact-method">
|
||
|
<h4>Business Inquiries</h4>
|
||
|
<p>Email: business@pixelmintgames.com</p>
|
||
|
</div>
|
||
|
</div>
|
||
|
</div>
|
||
|
|
||
|
<div class="contact-form">
|
||
|
<h3>Send Us a Message</h3>
|
||
|
<form id="contactForm">
|
||
|
<div class="form-group">
|
||
|
<label for="name">Name</label>
|
||
|
<input type="text" id="name" name="name" required>
|
||
|
</div>
|
||
|
|
||
|
<div class="form-group">
|
||
|
<label for="email">Email</label>
|
||
|
<input type="email" id="email" name="email" required>
|
||
|
</div>
|
||
|
|
||
|
<div class="form-group">
|
||
|
<label for="subject">Subject</label>
|
||
|
<input type="text" id="subject" name="subject" required>
|
||
|
</div>
|
||
|
|
||
|
<div class="form-group">
|
||
|
<label for="message">Message</label>
|
||
|
<textarea id="message" name="message" rows="5" required></textarea>
|
||
|
</div>
|
||
|
|
||
|
<button type="submit" class="btn">Send Message</button>
|
||
|
</form>
|
||
|
</div>
|
||
|
</div>
|
||
|
</div>
|
||
|
</section>
|
||
|
|
||
|
<footer>
|
||
|
<div class="container">
|
||
|
<div class="footer-content">
|
||
|
<div class="footer-logo">
|
||
|
<h3>Pixel Mint Games</h3>
|
||
|
</div>
|
||
|
<div class="footer-links">
|
||
|
<ul>
|
||
|
<li><a href="privacy.html">Privacy Policy</a></li>
|
||
|
<li><a href="terms.html">Terms of Service</a></li>
|
||
|
<li><a href="contact.html">Contact Us</a></li>
|
||
|
</ul>
|
||
|
</div>
|
||
|
</div>
|
||
|
<div class="copyright">
|
||
|
<p>© 2024 Pixel Mint Games. All rights reserved.</p>
|
||
|
</div>
|
||
|
</div>
|
||
|
</footer>
|
||
|
|
||
|
<script src="js/main.js"></script>
|
||
|
<script>
|
||
|
document.getElementById('contactForm').addEventListener('submit', function(e) {
|
||
|
e.preventDefault();
|
||
|
alert('Thank you for your message! We will get back to you soon.');
|
||
|
this.reset();
|
||
|
});
|
||
|
</script>
|
||
|
</body>
|
||
|
</html>
|