Basic Web Page of University
Fri Nov 15 2024 17:52:46 GMT+0000 (Coordinated Universal Time)
Saved by @signup_returns
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>University Demo</title>
<style>
/* Basic CSS styles for layout and appearance */
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
background-color: #f4f4f9;
}
header {
background-color: #4CAF50;
color: white;
padding: 20px;
text-align: center;
}
nav {
background-color: #333;
overflow: hidden;
}
nav a {
float: left;
display: block;
color: white;
padding: 14px 20px;
text-align: center;
text-decoration: none;
}
nav a:hover {
background-color: #ddd;
color: black;
}
section {
padding: 20px;
}
.container {
max-width: 1200px;
margin: 0 auto;
padding: 20px;
}
footer {
background-color: #333;
color: white;
text-align: center;
padding: 10px 0;
position: fixed;
width: 100%;
bottom: 0;
}
</style>
</head>
<body>
<header>
<h1>Welcome to Our University</h1>
<p>Empowering Future Leaders</p>
</header>
<nav>
<a href="#about">About</a>
<a href="#courses">Courses</a>
<a href="#contact">Contact</a>
</nav>
<section id="about">
<div class="container">
<h2>About Us</h2>
<p>Our University is dedicated to providing world-class education to students from all walks of life. We offer a wide range of academic programs designed to foster growth and leadership in our students.</p>
</div>
</section>
<section id="courses">
<div class="container">
<h2>Our Courses</h2>
<ul>
<li>Bachelor of Science in Computer Science</li>
<li>Master of Business Administration</li>
<li>Bachelor of Arts in History</li>
<li>PhD in Physics</li>
<li>Master of Engineering in Civil</li>
</ul>
</div>
</section>
<section id="contact">
<div class="container">
<h2>Contact Us</h2>
<p>Email: contact@university.com</p>
<p>Phone: +123 456 7890</p>
<p>Address: 123 University St, City, Country</p>
</div>
</section>
<footer>
<p>© 2024 University Demo. All rights reserved.</p>
</footer>
</body>
</html>



Comments