<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>College Notice Board | KITM Group of Institutions</title>
<style>
body {
font-family: Arial, sans-serif;
background: #f4f6f9;
margin: 0;
padding: 0;
}
.notice-container {
max-width: 900px;
margin: 30px auto;
background: #ffffff;
border-radius: 8px;
box-shadow: 0 0 10px rgba(0,0,0,0.1);
}
.notice-header {
background: #003366;
color: #ffffff;
padding: 15px;
font-size: 22px;
text-align: center;
border-radius: 8px 8px 0 0;
}
.notice-list {
padding: 20px;
}
.notice {
border-left: 5px solid #003366;
padding: 12px 15px;
margin-bottom: 15px;
background: #f9fbff;
}
.notice h4 {
margin: 0;
font-size: 16px;
color: #003366;
}
.notice p {
margin: 6px 0 0;
font-size: 14px;
color: #333;
}
.notice-date {
font-size: 12px;
color: #777;
margin-top: 5px;
}
/* Latest Notice Highlight */
.notice.latest {
background: #fff3e0;
border-left-color: #ff9800;
}
</style>
</head>
<body>
<div class="notice-container">
<div class="notice-header">
???? College Notice Board – KITM Group of Institutions
</div>
<div class="notice-list">
<!-- LATEST NOTICE (Always keep on top) -->
<div class="notice latest">
<h4>Admission Open for Session 2026</h4>
<p>Admissions are open for BCA, B.Sc IT, BJMC, BFM & Hotel Management courses. Contact office for details.</p>
<div class="notice-date">Date: 21 Jan 2026</div>
</div>
<div class="notice">
<h4>Job Fair Registration</h4>
<p>Students interested in overseas placement can register at the office before 25 Jan 2026.</p>
<div class="notice-date">Date: 18 Jan 2026</div>
</div>
<div class="notice">
<h4>Semester Examination Notice</h4>
<p>All students are informed that semester exams will start from 5 Feb 2026.</p>
<div class="notice-date">Date: 15 Jan 2026</div>
</div>
</div>
</div>
</body>
</html>