scc24php/.hta_slug/contact-us.php

134 lines
3.1 KiB
PHP

<style>
/* Basic Reset */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
/* Body Styling */
.contact-body {
font-family: 'Arial', sans-serif;
background-color: #f4f7fc;
color: #333;
line-height: 1.6;
}
/* Container Class */
.contact-container {
width: 90%;
max-width: 1200px;
margin: 0 auto;
padding: 40px 0;
}
/* Contact Title */
.contact-title {
font-size: 2.5rem;
font-weight: bold;
color: #007bff;
}
/* Contact Subtitle */
.contact-subtitle {
font-size: 1.2rem;
color: #555;
margin-bottom: 20px;
}
/* Contact Information Section */
.contact-info {
background-color: white;
padding: 20px;
border-radius: 8px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
margin-bottom: 40px;
}
.contact-info p {
font-size: 1.1rem;
margin-bottom: 1rem;
}
/* Address Style */
.contact-address {
margin-top: 1rem;
font-size: 1.2rem;
font-weight: bold;
}
.contact-link {
text-decoration: none;
color: #007bff;
}
.contact-link:hover {
color: #0056b3;
}
/* Map Section */
.contact-map-container {
margin-top: 30px;
}
.contact-map-frame {
width: 100%;
height: 450px;
border: 0;
border-radius: 8px;
}
/* Responsive Styling */
@media (max-width: 768px) {
.contact-title {
font-size: 2rem;
}
.contact-info {
padding: 15px;
}
.contact-map-frame {
height: 300px;
}
}
@media (max-width: 576px) {
.contact-container {
width: 100%;
padding: 20px;
}
.contact-title {
font-size: 1.8rem;
}
.contact-info {
padding: 10px;
}
}
</style>
<div class="contact-body">
<!-- Main Content Section -->
<div class="contact-container">
<!-- Contact Information Section -->
<div class="contact-info">
<h1 class="contact-title">Sree Chaitanya College, Habra</h1>
<p class="contact-subtitle">(Arts and Science)</p>
<p class="contact-address">Prafullanagar, Habra, 24Pgs(N) Pin-743268, W.B</p>
<p><strong>Phone:</strong> <a href="tel:+913216237020" class="contact-link">+91 8391054522</a></p>
<p><strong>Email:</strong> <a href="mailto:info@sreechaitanyacollege.ac.in" class="contact-link">info@sreechaitanyacollege.ac.in</a></p>
</div>
<!-- Map Section -->
<div class="contact-map-container">
<p class="contact-subtitle">View on Google Map</p>
<iframe class="contact-map-frame" src="https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3677.0775585659544!2d88.64048451555165!3d22.83661988504755!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x39f8b071c69b9933%3A0x5181c48a7b97726e!2sSree%20Chaitanya%20College%2C%20Habra!5e0!3m2!1sen!2sin!4v1667829054410!5m2!1sen!2sin"></iframe>
</div>
</div>
</div>