Basic web page of university
Fri Nov 15 2024 08:03:32 GMT+0000 (Coordinated Universal Time)
Saved by @login123
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>CVR</title> <style> body, h1, h2, p, ul { margin: 0; padding: 0; box-sizing: border-box; } body { font-family: Arial, sans-serif; line-height: 1.6; } header { background: #004080; color: #fff; padding: 1rem 0; text-align: center; } header h1 { margin-bottom: 0.5rem; } header p { font-style: italic; } nav { background: #0066cc; padding: 0.5rem 0; } nav ul { list-style: none; display: flex; justify-content: center; } nav ul li { margin: 0 1rem; } nav ul li a { text-decoration: none; color: #fff; font-weight: bold; transition: color 0.3s; } nav ul li a:hover { color: #ffcc00; } main { padding: 2rem; background: #f4f4f4; } main section { margin-bottom: 2rem; } main section h2 { color: #004080; margin-bottom: 1rem; } footer { background: #333; color: #fff; text-align: center; padding: 1rem 0; margin-top: 2rem; } </style> </head> <body> <header> <div class="header-container"> <h1>CVR</h1> <p>Your Path to Excellence</p> </div> </header> <nav> <ul> <li><a href="#home">Home</a></li> <li><a href="#about">About Us</a></li> <li><a href="#programs">Programs</a></li> <li><a href="#admissions">Admissions</a></li> <li><a href="#contact">Contact</a></li> </ul> </nav> <main> <section id="home"> <h2>Welcome to CVR</h2> <p>Discover our programs, vibrant campus life, and opportunities for growth.</p> </section> <section id="about"> <h2>About Us</h2> <p>We are a leading institution offering world-class education and research opportunities.</p> </section> <section id="programs"> <h2>Our Programs</h2> <ul> <li>Undergraduate Programs</li> <li>Postgraduate Programs</li> <li>Online Courses</li> </ul> </section> <section id="admissions"> <h2>Admissions</h2> <p>Applications are now open for the upcoming academic year.</p> </section> </main> <footer> <p>© 2024 University Name. All rights reserved.</p> </footer> </body> </html>
Comments