college web
1.college website
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>ABC College</title>
<style>
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
}
header {
background-color: #4CAF50;
color: white;
padding: 15px 0;
text-align: center;
}
nav {
background-color: #333;
overflow: hidden;
}
nav a {
float: left;
display: block;
color: white;
text-align: center;
padding: 14px 20px;
text-decoration: none;
}
nav a:hover {
background-color: #ddd;
color: black;
}
section, aside {
padding: 20px;
}
.main {
display: flex;
margin: 10px;
}
.main section {
flex: 70%;
background-color: #f9f9f9;
padding: 20px;
}
.main aside {
flex: 30%;
background-color: #f1f1f1;
padding: 20px;
}
figure {
margin: 0;
padding: 0;
text-align: center;
}
figure img {
width: 100%;
height: auto;
border-radius: 10px;
}
article {
margin-bottom: 20px;
}
footer {
background-color: #333;
color: white;
text-align: center;
padding: 15px;
position: relative;
bottom: 0;
width: 100%;
}
h1, h2 {
color: #4CAF50;
}
.card {
background-color: white;
padding: 20px;
margin-bottom: 20px;
border-radius: 10px;
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
</style>
</head>
<body>
<!-- Header section -->
<header>
<h1>Welcome to ABC College</h1>
<p>Empowering students to achieve their goals.</p>
</header>
<!-- Navigation Menu -->
<nav>
<a href="#about">About Us</a>
<a href="#departments">Departments</a>
<a href="#events">Events</a>
<a href="#contact">Contact Us</a>
</nav>
<!-- Main content section -->
<div class="main">
<section>
<!-- About Section -->
<article id="about" class="card">
<h2>About ABC College</h2>
<p>ABC College is one of the leading educational institutions dedicated to providing quality education and fostering innovation. Our mission is to nurture talents and develop skilled professionals.</p>
</article>
<!-- Departments Section -->
<article id="departments" class="card">
<h2>Our Departments</h2>
<ul>
<li>Department of Computer Science</li>
<li>Department of Mechanical Engineering</li>
<li>Department of Electronics & Communication</li>
<li>Department of Business Administration</li>
<li>Department of Humanities and Social Sciences</li>
</ul>
</article>
<!-- Events Section -->
<article id="events" class="card">
<h2>Upcoming Events</h2>
<ul>
<li>Annual Tech Fest - May 15, 2025</li>
<li>Alumni Meet - July 20, 2025</li>
<li>Sports Day - August 12, 2025</li>
</ul>
</article>
</section>
<!-- Sidebar with News or Highlights -->
<aside>
<h2>Latest News</h2>
<ul>
<li>ABC College ranked #1 in academic excellence</li>
<li>New research lab inaugurated by the Computer Science department</li>
<li>Scholarship opportunities for meritorious students</li>
</ul>
<!-- Social Media Links -->
<h2>Follow Us</h2>
<p>Stay updated with the latest news:</p>
<ul>
<li><a href="https://facebook.com" target="_blank">Facebook</a></li>
<li><a href="https://twitter.com" target="_blank">Twitter</a></li>
<li><a href="https://instagram.com" target="_blank">Instagram</a></li>
</ul>
</aside>
</div>
<!-- Contact Section -->
<section id="contact" class="card">
<h2>Contact Us</h2>
<address>
ABC College,<br>
123, Knowledge Street,<br>
Education City, Country.<br>
Phone: +123 456 7890<br>
Email: info@abccollege.edu
</address>
</section>
<!-- Footer -->
<footer>
<p>© 2025 ABC College. All Rights Reserved.</p>
</footer>
</body>
</html>
Comments
Post a Comment