Created
April 14, 2020 18:11
-
-
Save theArjun/aeb197d0df2b7045502738bdb814dd7a to your computer and use it in GitHub Desktop.
Bootstrap Top Bar with Social Buttons from Font Awesome and Search
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!-- TOP BAR --> | |
| <nav class="navbar navbar-expand-lg navbar-dark bg-dark"> | |
| <a class="navbar-brand" href="#">{{ blog.author }}</a> | |
| <button class="navbar-toggler" type="button" data-toggle="collapse" data-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 mr-auto"> | |
| <li class="nav-item social_links"><a href="" class="nav-link"><span class="fa fa-twitter"></span></a></li> | |
| <li class="nav-item social_links"><a href="" class="nav-link"><span class="fa fa-facebook"></span></a></li> | |
| <li class="nav-item social_links"><a href="" class="nav-link"><span class="fa fa-instagram"></span></a></li> | |
| <li class="nav-item social_links"><a href="" class="nav-link"><span class="fa fa-youtube-play"></span></a></li> | |
| </ul> | |
| <form class="form-inline my-2 my-lg-0"> | |
| <div class="d-flex justify-content-center h-100"> | |
| <div class="input-group"> | |
| <input class="form-control" type="text" placeholder="Enter Keyword" /> | |
| <div class="input-group-append"> | |
| <button class="btn btn-outline-primary" type="button">Search</button> | |
| </div> | |
| </div> | |
| </div> | |
| </form> | |
| </div> | |
| </nav> | |
| <!-- END TOP BAR --> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment