GovJob Portal
Welcome to GovJob Portal
Find the latest government job openings here.
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
background-color: #f4f4f4;
}
header {
background-color: #003366;
color: white;
padding: 15px 0;
text-align: center;
}
nav ul {
list-style: none;
padding: 0;
display: flex;
justify-content: center;
}
nav ul li {
margin: 0 15px;
}
nav ul li a {
color: white;
text-decoration: none;
}
main {
padding: 20px;
}
section {
margin-bottom: 30px;
}
form input, form textarea {
display: block;
width: 100%;
margin: 10px 0;
padding: 10px;
}
button {
padding: 10px 20px;
background-color: #003366;
color: white;
border: none;
cursor: pointer;
}
footer {
background-color: #222;
color: white;
text-align: center;
padding: 15px 0;
}
document.addEventListener('DOMContentLoaded', () => {
const jobList = document.getElementById('job-list');
// Example job data (replace with dynamic API later)
const jobs = [
{ title: "SSC CGL 2025", location: "India", deadline: "June 30, 2025" },
{ title: "UPSC Civil Services", location: "Pan India", deadline: "July 15, 2025" },
{ title: "Railway Recruitment 2025", location: "Various Zones", deadline: "May 25, 2025" }
];
jobs.forEach(job => {
const li = document.createElement('li');
li.textContent = `${job.title} – ${job.location} – Apply by ${job.deadline}`;
jobList.appendChild(li);
});
});
Comments
Post a Comment