-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontact.html
More file actions
101 lines (92 loc) · 4.13 KB
/
contact.html
File metadata and controls
101 lines (92 loc) · 4.13 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Contact Us - FoodFront</title>
<link rel="stylesheet" href="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@400;600;700&display=swap" rel="stylesheet">
</head>
<body>
<!-- Re-using the same header -->
<header>
<div class="container header-container">
<a href="index.html" class="logo">
<img src="./images/logo.svg" alt="FoodFront Logo">
</a>
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
</nav>
<a href="booking.html" class="btn">Book A Table</a>
</div>
</header>
<!-- Custom Hero Section for this Page -->
<section id="page-hero">
<div class="container">
<h1>Contact Us</h1>
</div>
</section>
<main>
<section id="contact-page-content">
<div class="container">
<div class="section-header" style="text-align: center; margin-bottom: 50px;">
<h3 class="section-subtitle">Contact Us</h3>
<h2 class="section-title" style="justify-content: center;">Contact For Any Query</h2>
</div>
<!-- Three Contact Info Cards -->
<div class="contact-info-cards">
<div class="contact-card">
<h4><img src="./images/envelope.png" alt="envelope icon"> Booking</h4>
<p>booking@example.com</p>
</div>
<div class="contact-card">
<h4><img src="./images/envelope.png" alt="envelope icon"> General</h4>
<p>general@example.com</p>
</div>
<div class="contact-card">
<h4><img src="./images/envelope.png" alt="envelope icon"> Technical</h4>
<p>tech@example.com</p>
</div>
</div>
<!-- Map and Form Grid -->
<div class="contact-main-grid">
<div class="map-container">
<iframe src="https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3321.281807965398!2d73.03909911126513!3d33.649859238758765!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x38df956e2740f24b%3A0x900cf1f64c9030d0!2sEmumba%20Private%20Limited!5e0!3m2!1sen!2s!4v1751957428747!5m2!1sen!2s" width="600" height="450"
width="100%" height="100%" style="border:0;" allowfullscreen="" loading="lazy" referrerpolicy="no-referrer-when-downgrade"></iframe>
</div>
<form class="contact-form">
<div class="form-row">
<input type="text" placeholder="Your Name" required>
<input type="email" placeholder="Your Email" required>
</div>
<input type="text" placeholder="Subject" required>
<textarea placeholder="Message" rows="8" required></textarea>
<button type="submit" class="btn">SEND MESSAGE</button>
</form>
</div>
</div>
</section>
</main>
<!-- Re-using the same footer -->
<footer class="main-footer">
<div class="container footer-container">
<div class="footer-left">
<p>© FoodFront, All Right Reserved.</p>
</div>
<div class="footer-right">
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
</nav>
</div>
</div>
</footer>
</body>
</html>