-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontact.html
More file actions
179 lines (146 loc) · 4.79 KB
/
contact.html
File metadata and controls
179 lines (146 loc) · 4.79 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
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
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Contact Us - InstaGrab</title>
<link rel="stylesheet" href="global.css">
<link rel="stylesheet" href="contact.css">
</head>
<body>
<header>
<div class="container">
<nav>
<a href="index.html" class="logo">InstaGrab</a>
<ul class="nav-links">
<li><a href="index.html">Home</a></li>
<li><a href="about.html">About</a></li>
<li><a href="contact.html">Contact</a></li>
<li><a href="faq.html">FAQ</a></li>
</ul>
<div class="nav-buttons">
<button id="theme-toggle" class="theme-toggle">🌓</button>
<a href="login.html" class="btn btn-secondary">Login</a>
<a href="signup.html" class="btn btn-primary">Sign Up</a>
</div>
</nav>
</div>
</header>
<section class="hero">
<div class="container">
<h1>Contact Us</h1>
<p>Have a question? We'd love to hear from you.</p>
</div>
</section>
<section>
<div class="container">
<div class="contact-grid">
<div>
<h2 style="margin-bottom:1.5rem;">Send us a Message</h2>
<form id="contact-form" class="contact-form">
<div class="form-group">
<label for="name">Full Name</label>
<input type="text" id="name" name="name" required>
</div>
<div class="form-group">
<label for="email">Email Address</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="category">Category</label>
<select id="category" name="category">
<option>General Inquiry</option>
<option>Customer Support</option>
<option>Restaurant Inquiry</option>
<option>Partnership</option>
<option>Other</option>
</select>
</div>
<div class="form-group">
<label for="message">Message</label>
<textarea id="message" name="message" rows="6" required></textarea>
</div>
<button type="submit" class="btn btn-primary" style="width:100%;padding:1rem;">
Send Message
</button>
</form>
</div>
<div>
<h2 style="margin-bottom:1.5rem;">Contact Information</h2>
<div class="map-section">
<h3>📍 Address</h3>
<p>
123 Food Street<br>
San Francisco, CA 94102<br>
United States
</p>
</div>
<div class="map-section">
<h3>📞 Phone</h3>
<p>
+1 (555) 123-4567<br>
Monday–Friday, 9am–6pm PST
</p>
</div>
<div class="map-section">
<h3>✉️ Email</h3>
<p>
</p>
</div>
<div class="business-hours">
<h3>🕐 Business Hours</h3>
<p>
Monday–Friday: 9:00am – 6:00pm<br>
Saturday: 10:00am – 4:00pm<br>
Sunday: Closed
</p>
</div>
</div>
</div>
</div>
</section>
<footer>
<div class="container">
<div class="footer-grid">
<div class="footer-section">
<h3>InstaGrab</h3>
<p>Your favorite food delivery app. Order now, eat happy.</p>
</div>
<div class="footer-section">
<h3>For Customers</h3>
<ul class="footer-links">
<li><a href="#">Browse Restaurants</a></li>
<li><a href="#">Track Orders</a></li>
<li><a href="#">Special Offers</a></li>
</ul>
</div>
<div class="footer-section">
<h3>For Restaurants</h3>
<ul class="footer-links">
<li><a href="#">Partner With Us</a></li>
<li><a href="#">Business Resources</a></li>
</ul>
</div>
<div class="footer-section">
<h3>Company</h3>
<ul class="footer-links">
<li><a href="about.html">About Us</a></li>
<li><a href="contact.html">Contact</a></li>
<li><a href="faq.html">FAQ</a></li>
</ul>
</div>
</div>
<div class="footer-bottom">
<p>© 2025 InstaGrab. All rights reserved.</p>
</div>
</div>
</footer>
<script src="theme.js"></script>
</body>
</html>