[go: up one dir, main page]

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

!doctype HTML

The document is an HTML template for a Quiz Platform website featuring a navigation bar with links to Home, About, Student Corner, and Teacher Corner. It includes dropdown menus for additional options like Student Section and Teacher Section, along with a search form. The template utilizes Bootstrap for styling and responsive design.

Uploaded by

Jayesh Kumar
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)
19 views2 pages

!doctype HTML

The document is an HTML template for a Quiz Platform website featuring a navigation bar with links to Home, About, Student Corner, and Teacher Corner. It includes dropdown menus for additional options like Student Section and Teacher Section, along with a search form. The template utilizes Bootstrap for styling and responsive design.

Uploaded by

Jayesh Kumar
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">
<title>Quiz Plateform</title>
<link
href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css"
rel="stylesheet" integrity="sha384-
QWTKZyjpPEjISv5WaRU9OFeRpok6YctnYmDr5pNlyT2bRjXh0JMhjY6hW+ALEwIH"
crossorigin="anonymous">
</head>
<body>
<nav class="navbar navbar-expand-lg navbar-dark bg-dark">
<div class="container-fluid">
<a class="navbar-brand" href="#">Quiz Plateform</a>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse"
data-bs-target="#navbarSupportedContent" aria-controls="navbarSupportedContent"
aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarSupportedContent">
<ul class="navbar-nav me-auto mb-2 mb-lg-0">
<li class="nav-item">
<a class="nav-link active" aria-current="page"
href="index.html">Home</a>
</li>

<li class="nav-item dropdown">


<a class="nav-link dropdown-toggle" href="#" role="button" data-bs-
toggle="dropdown" aria-expanded="false">
About
</a>
<ul class="dropdown-menu">
<li><a class="dropdown-item" href="#">Overviews</a></li>
</ul>
</li>

<li class="nav-item dropdown">


<a class="nav-link dropdown-toggle" href="/student" role="button"
data-bs-toggle="dropdown" aria-expanded="false">
Student Corner
</a>
<ul class="dropdown-menu">
<li><a class="dropdown-item" href="/student">Student
Section</a></li>
<li><a class="dropdown-item" href="#">Login</a></li>

</ul>
</li>

<li class="nav-item dropdown">


<a class="nav-link dropdown-toggle" href="/teacher" role="button"
data-bs-toggle="dropdown" aria-expanded="false">
Teacher Corner
</a>
<ul class="dropdown-menu">
<li><a class="dropdown-item" href="/teacher">Teacher
Section</a></li>
<li><a class="dropdown-item" href="#">Login</a></li>
</ul>

<li class="nav-item">
<a class="nav-link disabled" aria-disabled="true">Disabled</a>
</li>
</ul>
<form class="d-flex" role="search">
<input class="form-control me-2" type="search" placeholder="Search"
aria-label="Search">
<button class="btn btn-outline-success" type="submit">Search</button>
</form>
</div>
</div>
</nav>
<script
src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/js/bootstrap.bundle.min.js"
integrity="sha384-YvpcrYf0tY3lHB60NNkmXc5s9fDVZLESaAA55NDzOxhy9GkcIdslK1eN7N6jIeHz"
crossorigin="anonymous"></script>
</body>
</html>

You might also like