<!
DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>User Registration Fornm</title>
<style>
body {
font-family: Arial, sans-serif;
background-color: #f4f4f4;
padding: 20px;
}
header {
display: flex;
align-items: flex-end;
justify-content: space-between;
margin-bottom: 20px;
}
header h1 {
font-size: 20px;
color: #333;
margin: 0;
}
header img {
height: 100px;/* adjust height as needed */
border-radius: 5px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1,);
}
nav {
background-color: #333;
padding: 10px 20px;
margin-bottom: 20px;
}
nav ul {
list-style: none;
margin: 0;
padding: 0;
display: flex;
align-items: center;
}
nav ul li {
margin-right: 15px;
}
nav ul li a {
text-decoration: none;
color: white;
font-size: 16px;
transition: color 0.3s;
}
nav ul li a:hover {
color: #28a745;
}
nav ul li img {
height: 40px;/* adjust this to logo's size */
width: auto;/* keeps the aspect ratio */
}
h2 {
text-align: left;
color: #333;
}
/* Card Styles */
.card-container {
display: flex;
justify-content: space-between;
gap: 20px;
margin-top: 20px;
color: #fff;
}
.card-1 {
background-image: url("Academic Services.png");
background-size: cover;
background-repeat: no-repeat;
height: 50vh;
border-radius: 10px;
}
.card-1 h3 {
font-size: 30px;
color: #fff;
text-align: center;
padding-top: 40px;
}
.card-2 {
background-image: url("Student support.png");
background-size: cover;
background-repeat: no-repeat;
border-radius: 10px;
}
.card-2 h3 {
font-size: 30px;
color: #fff;
text-align: center;
padding-top: 40px;
}
.card-3 {
background-image: url("Extracurricular.png");
background-size: cover;
background-repeat: no-repeat;
border-radius: 10px;
}
.card-3 h3 {
font-size: 30px;
color: #fff;
text-align: center;
padding-top: 40px;
}
</style>
</head>
</head>
<body>
<!--Header Section with Flexbox-->
<header>
<marquee><h1>Welcome to Aroroy Municipal College!</h1></marquee>
</header>
<!--Navigation Bar-->
<nav>
<ul>
<li><img src="Aroroy-Municipal-College.png" alt="AMC logo"/></li>
<li><a href="index.html">Home</a></li>
<li><a href="about.html">About</a></li>
<li><a href="services.html">Services</a></li>
<li><a href="contact.html">Contact</a></li>
<li><a href="register.html">Register</a></li>
</ul>
</nav>
<h2>Welcome to AMC Services</h2>
<p>At AMC, we are dedicated to fostering an environment where students
thrive academically, socially, and personally.<br>
Our comprehensive services are designed to support students, parents, and the
wider community, ensuring everyone achieves their full potential.</p>
<!--Cards Section-->
<div class="card-container">
<div class="card-1">
<h3>Academic Services</h3>
<ul>
<li><strong>Curriculum Support:</strong> We offer a robust,
standards-aligned curriculum that caters to diverse learning needs.</li>
<li><strong>Special Education Programs:</strong> Tailored support
for students with individualized education plans</li>
<li><strong>Tutoring & Remediation:</strong> One-on-one and group
sessions to strengthen academic skills.</li>
</ul>
</div>
<div class="card-2">
<h3>Student Support Services</h3>
<ul>
<li><strong>Counseling Services</strong>: Academic and personal
counseling to guide students through their educational journey.</li>
<il><strong>Career Guidance</strong>: Tools and advice to help
students explore career paths and higher education opportunities.</il>
<li><strong>Health Services</strong>: On-campus health care and
wellness programs to ensure the well-being of all students.</li>
<li><strong>Social-Emotional Learning</strong>: Programs to help
students develop resilience, empathy, and effective communication.</li>
</ul>
</div>
<div class="card-3">
<h3>Extracurricular Programs</h3>
<ul>
<li><strong>Sports and Athletics:</strong> A variety of team and
individual sports to promote physical fitness and teamwork.</li>
<li><strong>Community Service Initiatives:</strong> Encourage civic
responsibility through volunteer opportunities.</li>
<li><strong>Arts and Music Programs:</strong>> Opportunities for
students to express their creativity and talent</li>
</ul>
</div>
</div>
</body>
</html>