-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontact.html
More file actions
237 lines (219 loc) · 13 KB
/
contact.html
File metadata and controls
237 lines (219 loc) · 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
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
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Contact - Physics Scholarship Program</title>
<link rel="stylesheet" href="css/styles.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css">
</head>
<body>
<!-- Header -->
<header class="header">
<div class="container">
<a href="index.html" class="logo">
<img src="images/logo.png" alt="Physics Scholarship Program Logo">
<span class="logo-text">Physics Scholarship</span>
</a>
<nav>
<ul class="nav-menu">
<li class="nav-item"><a href="index.html" class="nav-link">Home</a></li>
<li class="nav-item"><a href="about.html" class="nav-link">About</a></li>
<li class="nav-item"><a href="past-cohorts.html" class="nav-link">Past Cohorts</a></li>
<li class="nav-item"><a href="apply.html" class="nav-link">Apply</a></li>
<li class="nav-item"><a href="resources.html" class="nav-link">Resources</a></li>
<li class="nav-item"><a href="contact.html" class="nav-link active">Contact</a></li>
</ul>
<div class="hamburger">
<span class="bar"></span>
<span class="bar"></span>
<span class="bar"></span>
</div>
</nav>
</div>
</header>
<!-- Page Banner -->
<section class="hero" style="height: 40vh;">
<div class="container">
<div class="hero-content">
<h1 class="hero-title">Contact Us</h1>
<p class="hero-subtitle">Get in touch with our team</p>
</div>
</div>
</section>
<!-- Contact Information -->
<section class="section">
<div class="container">
<h2 class="section-title">Contact Information</h2>
<div class="row" style="display: flex; flex-wrap: wrap; gap: 2rem;">
<div style="flex: 1; min-width: 300px;">
<div class="card">
<h3 class="card-title">Program Office</h3>
<p><i class="fas fa-map-marker-alt" style="color: var(--tertiary-color-1); margin-right: 0.5rem;"></i> Department of Physics<br>
University Campus<br>
City, State ZIP</p>
<p><i class="fas fa-envelope" style="color: var(--tertiary-color-1); margin-right: 0.5rem;"></i> physics.scholarship@university.edu</p>
<p><i class="fas fa-phone" style="color: var(--tertiary-color-1); margin-right: 0.5rem;"></i> (123) 456-7890</p>
<p><i class="fas fa-clock" style="color: var(--tertiary-color-1); margin-right: 0.5rem;"></i> Office Hours: Monday-Friday, 9:00 AM - 5:00 PM</p>
</div>
</div>
<div style="flex: 1; min-width: 300px;">
<div class="card">
<h3 class="card-title">Program Coordinators</h3>
<div style="margin-bottom: var(--spacing-md);">
<p><strong>Dr. Sarah Chen</strong><br>
Program Director<br>
<i class="fas fa-envelope" style="color: var(--tertiary-color-1); margin-right: 0.5rem;"></i> s.chen@university.edu<br>
<i class="fas fa-phone" style="color: var(--tertiary-color-1); margin-right: 0.5rem;"></i> (123) 456-7891</p>
</div>
<div>
<p><strong>Dr. Michael Rodriguez</strong><br>
Research Coordinator<br>
<i class="fas fa-envelope" style="color: var(--tertiary-color-1); margin-right: 0.5rem;"></i> m.rodriguez@university.edu<br>
<i class="fas fa-phone" style="color: var(--tertiary-color-1); margin-right: 0.5rem;"></i> (123) 456-7892</p>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Contact Form -->
<section class="section" style="background-color: var(--background-color);">
<div class="container">
<h2 class="section-title">Send Us a Message</h2>
<p style="text-align: center; max-width: 800px; margin: 0 auto var(--spacing-lg);">Have questions about the program? Fill out the form below and we'll get back to you as soon as possible.</p>
<div class="form-container">
<form id="contact-form" action="submit-contact.php" method="post">
<div style="display: flex; gap: 1rem; flex-wrap: wrap;">
<div class="form-group" style="flex: 1; min-width: 250px;">
<label for="name" class="form-label">Full Name *</label>
<input type="text" id="name" name="name" class="form-control" required>
</div>
<div class="form-group" style="flex: 1; min-width: 250px;">
<label for="email" class="form-label">Email Address *</label>
<input type="email" id="email" name="email" class="form-control" required>
</div>
</div>
<div class="form-group">
<label for="subject" class="form-label">Subject *</label>
<input type="text" id="subject" name="subject" class="form-control" required>
</div>
<div class="form-group">
<label for="message" class="form-label">Message *</label>
<textarea id="message" name="message" class="form-control" rows="6" required></textarea>
</div>
<div class="form-group">
<div style="display: flex; align-items: flex-start;">
<input type="checkbox" id="newsletter" name="newsletter" style="margin-top: 0.3rem; margin-right: 0.5rem;">
<label for="newsletter">Subscribe to our newsletter for updates about the program and future opportunities</label>
</div>
</div>
<div style="text-align: center; margin-top: var(--spacing-lg);">
<button type="submit" class="btn btn-primary">Send Message</button>
</div>
</form>
</div>
</div>
</section>
<!-- Location Map -->
<section class="section">
<div class="container">
<h2 class="section-title">Location</h2>
<div class="card">
<div style="position: relative; width: 100%; height: 0; padding-bottom: 56.25%; margin-bottom: var(--spacing-md);">
<!-- Placeholder for map iframe -->
<div style="position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-color: #e9ecef; display: flex; align-items: center; justify-content: center;">
<p style="text-align: center;">Interactive Map<br>(Google Maps embed will appear here)</p>
</div>
</div>
<div>
<h3>Directions</h3>
<p>The Physics Department is located in the Science Building on the main university campus. Visitor parking is available in Lot B, adjacent to the Science Building.</p>
<h4>Public Transportation</h4>
<p>The campus is accessible via public transportation:</p>
<ul>
<li>Bus Routes: 10, 15, and 22 stop at the University Transit Center</li>
<li>Subway: University Station (Blue Line)</li>
</ul>
<h4>From the Airport</h4>
<p>The university is approximately 20 minutes by car from the International Airport. Taxi services and ride-sharing options are available at the airport terminals.</p>
</div>
</div>
</div>
</section>
<!-- FAQ Section -->
<section class="section" style="background-color: var(--background-color);">
<div class="container">
<h2 class="section-title">Frequently Asked Questions</h2>
<div class="card">
<div style="margin-bottom: var(--spacing-md);">
<h3>When should I expect a response to my inquiry?</h3>
<p>We aim to respond to all inquiries within 2-3 business days. During peak application periods, response times may be slightly longer.</p>
</div>
<div style="margin-bottom: var(--spacing-md);">
<h3>Who should I contact with questions about my application?</h3>
<p>For questions specifically about your application status or materials, please email physics.scholarship@university.edu with your full name and application reference number (if available).</p>
</div>
<div style="margin-bottom: var(--spacing-md);">
<h3>Can I schedule a visit to the laboratory?</h3>
<p>Yes, we offer guided tours of our facilities for prospective applicants. Tours must be scheduled at least two weeks in advance by contacting our program office.</p>
</div>
<div>
<h3>How can I connect with current or past program participants?</h3>
<p>We can arrange for you to speak with current scholars or alumni who can share their experiences. Please indicate your interest in your inquiry, and we'll facilitate the connection.</p>
</div>
</div>
</div>
</section>
<!-- Connect Section -->
<section class="section">
<div class="container">
<h2 class="section-title">Connect With Us</h2>
<div style="text-align: center; margin-bottom: var(--spacing-lg);">
<div style="font-size: 2rem; margin-bottom: var(--spacing-md);">
<a href="#" style="color: var(--primary-color); margin: 0 var(--spacing-sm);"><i class="fab fa-facebook"></i></a>
<a href="#" style="color: var(--primary-color); margin: 0 var(--spacing-sm);"><i class="fab fa-twitter"></i></a>
<a href="#" style="color: var(--primary-color); margin: 0 var(--spacing-sm);"><i class="fab fa-instagram"></i></a>
<a href="#" style="color: var(--primary-color); margin: 0 var(--spacing-sm);"><i class="fab fa-linkedin"></i></a>
<a href="#" style="color: var(--primary-color); margin: 0 var(--spacing-sm);"><i class="fab fa-youtube"></i></a>
</div>
<p>Follow us on social media for program updates, physics news, and research highlights.</p>
</div>
</div>
</section>
<!-- Footer -->
<footer class="footer">
<div class="container">
<div class="footer-grid">
<div class="footer-column">
<h4>Contact Us</h4>
<p>Department of Physics<br>University Campus<br>City, State ZIP</p>
<p>Email: physics.scholarship@university.edu<br>Phone: (123) 456-7890</p>
</div>
<div class="footer-column">
<h4>Quick Links</h4>
<ul class="footer-links">
<li class="footer-link"><a href="index.html">Home</a></li>
<li class="footer-link"><a href="about.html">About the Program</a></li>
<li class="footer-link"><a href="past-cohorts.html">Past Cohorts</a></li>
<li class="footer-link"><a href="apply.html">Apply</a></li>
<li class="footer-link"><a href="resources.html">Resources</a></li>
<li class="footer-link"><a href="contact.html">Contact</a></li>
</ul>
</div>
<div class="footer-column">
<h4>Institutional Partners</h4>
<div class="institutional-logos">
<img src="images/institution-1.png" alt="Institution Logo" class="institutional-logo">
<img src="images/institution-2.png" alt="Institution Logo" class="institutional-logo">
</div>
</div>
</div>
<div class="footer-bottom">
<p>© 2025 Physics Scholarship Program. All rights reserved.</p>
</div>
</div>
</footer>
<script src="js/main.js"></script>
</body>
</html>