Thanks to visit codestin.com
Credit goes to www.scribd.com

0% found this document useful (0 votes)
15 views2 pages

Showing How To Make Navigation Bar in HTML

The document is an HTML template for a Student Portal webpage featuring a responsive navigation bar. It includes links for Home, Profile, Messages (with dropdown options for Inbox, Sent, and Drafts), and a disabled Reports link, along with a search form and a Login option. The page utilizes Bootstrap for styling and layout.

Uploaded by

thirdeye353
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
15 views2 pages

Showing How To Make Navigation Bar in HTML

The document is an HTML template for a Student Portal webpage featuring a responsive navigation bar. It includes links for Home, Profile, Messages (with dropdown options for Inbox, Sent, and Drafts), and a disabled Reports link, along with a search form and a Login option. The page utilizes Bootstrap for styling and layout.

Uploaded by

thirdeye353
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
You are on page 1/ 2

<!

DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link
href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css"
rel="stylesheet"
integrity="sha384-EVSTQN3/azprG1Anm3QDgpJLIm9Nao0Yz1ztcQTwFspd3yD65VohhpuuCOmLASjC"
crossorigin="anonymous">
<script
src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"
integrity="sha384-MrcW6ZMFYlzcLA8Nl+NtUVF0sA7MsXsP1UyJoMp4YLEuNSfAP+JcXn/tWtIaxVXM"
crossorigin="anonymous"></script>

</head>
<body>

<nav class="navbar-expand-lg navbar-light bg-light">


<div class="container-fluid">
<a href="#" class="navbar-brand">Student Portal</a>

<button type="button" class="navbar-toggler" data-bs-toggle="collapse"


data-bs-target="#navbarcollapse" >
<span class="navbar-toggler-icon"></span>
</button>

<div class="collapse navbar-collapse" id="navbarcollapse">


<div class="navbar-nav">

<a href="#" class="nav-item nav-link active">Home</a>


<a href="#" class="nav-item nav-link">Profile</a>

<div class="nav-item dropdown">


<a href="#" class="nav-link dropdown-toggle"
data-bs-toggle="dropdown">Messages</a>
<div class="dropdown-menu">
<a href="#" class="dropdown-item">Inbox</a>
<a href="#" class="dropdown-item">Sent</a>
<a href="#" class="dropdown-item">Drafts</a>
</div>
</div>

<a href="#" class="nav-item nav-link disabled" tabindex="-


1">Reports</a>

</div>

<form class="d-flex">
<div class="input-group">
<input type="text" class="form-control" placeholder="Search">
<button type="button" class="btn btn-secondary"><i class="bi-
search"></i></button>
</div>
</form>
<div class="navbar-nav ms-auto">
<a href="#" class="nav-item nav-link">Login</a>
</div>
</div>

</div>

</nav>

</body>

</html>

You might also like