Spaces:
Running
Running
| <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> |