Skip to content
Permalink
main
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Student Administration System</title>
</head>
<body>
<!-- Navbar Section -->
<nav class="navbar">
<a href="/" class="navbar__logo">Student Administration System</a>
<div class="navbar__toggle" id="mobile-menu">
<span class="bar"></span>
<span class="bar"></span>
<span class="bar"></span>
</div>
<div class="navbar__menu">
<a href="/" class="navbar__link">Home</a>
<a href="/about.html" class="navbar__link">About</a>
<a href="/viewcourses.html" class="navbar__link">View Courses</a>
<a href="/support.html" class="navbar__link">Support</a>
<a href="/contact.html" class="navbar__link">Contact</a>
</div>
</nav>
</body>
</html>