Spaces:
Running
Running
File size: 6,078 Bytes
61bec0b | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="Get in touch with AnyCoder Coffee - reservations, events, and inquiries">
<title>Contact Us - AnyCoder Coffee</title>
<link rel="stylesheet" href="assets/css/styles.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=Source+Code+Pro:wght@400;600&family=Source+Sans+Pro:wght@400;600&display=swap" rel="stylesheet">
</head>
<body>
<header>
<div class="container">
<div class="logo">
<h1><span class="logo-code"></></span> AnyCoder Coffee</h1>
</div>
<nav>
<button class="mobile-menu-toggle" aria-label="Toggle navigation menu">
<span></span>
<span></span>
<span></span>
</button>
<ul class="nav-menu">
<li><a href="index.html">Home</a></li>
<li><a href="about.html">About</a></li>
<li><a href="contact.html" class="active">Contact</a></li>
</ul>
</nav>
</div>
</header>
<main>
<section class="page-hero">
<div class="container">
<h1>Get In Touch</h1>
<p>We'd love to hear from you</p>
</div>
</section>
<section class="contact-content">
<div class="container">
<div class="contact-grid">
<div class="contact-info">
<h2>Visit Us</h2>
<div class="info-item">
<h3>Address</h3>
<p>123 Developer Avenue<br>Tech City, TC 10101</p>
</div>
<div class="info-item">
<h3>Hours</h3>
<p>Mon-Fri: 7:00 AM - 11:00 PM<br>
Saturday: 8:00 AM - 11:00 PM<br>
Sunday: 9:00 AM - 10:00 PM</p>
</div>
<div class="info-item">
<h3>Contact</h3>
<p>Email: hello@anycodercoffee.com<br>
Phone: (555) 123-CODE</p>
</div>
</div>
<div class="contact-form-container">
<h2>Send us a message</h2>
<form class="contact-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>
<select id="subject" name="subject" required>
<option value="">Select a subject</option>
<option value="general">General Inquiry</option>
<option value="reservation">Reservation</option>
<option value="event">Event Space</option>
<option value="feedback">Feedback</option>
<option value="other">Other</option>
</select>
</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 id="formMessage" class="form-message"></div>
</div>
</div>
</div>
</section>
<section class="map-section">
<div class="container">
<h2>Find Your Way</h2>
<div class="map-placeholder">
<p>Interactive map would be displayed here</p>
<span>123 Developer Avenue, Tech City</span>
</div>
</div>
</section>
</main>
<footer>
<div class="container">
<div class="footer-content">
<div class="footer-section">
<h3>AnyCoder Coffee</h3>
<p>Where code meets coffee perfection</p>
</div>
<div class="footer-section">
<h4>Connect</h4>
<ul>
<li><a href="#">GitHub</a></li>
<li><a href="#">Twitter</a></li>
<li><a href="#">LinkedIn</a></li>
</ul>
</div>
<div class="footer-section">
<h4>Resources</h4>
<ul>
<li><a href="#">Tech Events</a></li>
<li><a href="#">Developer Blog</a></li>
<li><a href="#">Coffee Recipes</a></li>
</ul>
</div>
</div>
<div class="footer-bottom">
<p>© 2023 AnyCoder Coffee. All rights reserved.</p>
</div>
</div>
</footer>
<script src="assets/js/main.js"></script>
</body>
</html> |