0% found this document useful (0 votes)
28 views1 page

New Text Document

The document contains code for a navigation bar with a brand name and toggle button that collapses additional links on mobile screens.

Uploaded by

Vladisslav
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)
28 views1 page

New Text Document

The document contains code for a navigation bar with a brand name and toggle button that collapses additional links on mobile screens.

Uploaded by

Vladisslav
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/ 1

<nav class="navbar navbar-expand-md navbar-dark bg-primary fixed-top">

<div class="d-flex w-50 order-0">


<a class="navbar-brand mr-1" href="#">Bootstrap 4</a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-
target="#collapsingNavbar">
<span class="navbar-toggler-icon"></span>
</button>
</div>
<div class="navbar-collapse collapse justify-content-center order-2"
id="collapsingNavbar">
<ul class="navbar-nav">
<li class="nav-item active">
<a class="nav-link" href="#">Link <span class="sr-
only">Home</span></a>
</li>
<li class="nav-item">
<a class="nav-link" href="//codeply.com">Codeply</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#">Link</a>
</li>
</ul>
</div>
</nav>

<a class="navbar-brand" href="index.html"><img class="logo"


src="img/favicon.png"></a>

You might also like