Untitled

 avatar
unknown
plain_text
17 days ago
2.5 kB
2
Indexable
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>College Website</title>
    <style>
        body {
            font-family: Arial, sans-serif;
            margin: 0;
            padding: 0;
        }
        header {
            background-color: #0044cc;
            color: white;
            padding: 15px 20px;
            text-align: center;
        }
        nav {
            background-color: #f4f4f4;
            padding: 10px;
        }
        nav a {
            text-decoration: none;
            margin-right: 15px;
            color: #0044cc;
        }
        nav a:hover {
            text-decoration: underline;
        }
        section {
            padding: 20px;
        }
    </style>
</head>
<body>
    <header>
        <h1>Welcome to Our College</h1>
    </header>
    <nav>
        <a href="#courses">Courses</a>
        <a href="#faculties">Department Faculties</a>
        <a href="#library">Library</a>
    </nav>
    <section id="courses">
        <h2>Courses</h2>
        <p>Our college offers a variety of courses across different disciplines:</p>
        <ul>
            <li>Bachelor of Science (B.Sc.)</li>
            <li>Bachelor of Arts (B.A.)</li>
            <li>Master of Business Administration (MBA)</li>
            <li>Computer Science and Engineering (B.Tech)</li>
        </ul>
    </section>
    <section id="faculties">
        <h2>Department Faculties</h2>
        <p>We are proud of our highly qualified and experienced faculties:</p>
        <ul>
            <li>Dr. A. Kumar - Head of Mathematics Department</li>
            <li>Dr. B. Sharma - Head of Computer Science Department</li>
            <li>Prof. C. Gupta - Head of Humanities Department</li>
            <li>Dr. D. Mehta - Head of Management Department</li>
        </ul>
    </section>
    <section id="library">
        <h2>Library</h2>
        <p>Our library is a hub of knowledge with a wide range of resources:</p>
        <ul>
            <li>Over 10,000 books covering various subjects</li>
            <li>Online access to journals and research papers</li>
            <li>Dedicated study and reading zones</li>
        </ul>
    </section>
    <footer style="background-color:#0044cc; color:white; text-align:center; padding:10px;">
        <p>&copy; 2025 Our College. All rights reserved.</p>
    </footer>
</body>
</html>
Leave a Comment