Created
November 12, 2020 15:32
-
-
Save shershen08/e171f2f796f9ef168ad2d8232d16b5df to your computer and use it in GitHub Desktop.
static forum header markup
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
| <header class="header" id="header"> | |
| <a href="#"> | |
| <img src="../assets/img/vueschool-logo.svg"> | |
| </a> | |
| <div class="btn-hamburger"> | |
| <!-- use .btn-humburger-active to open the menu --> | |
| <div class="top bar"></div> | |
| <div class="middle bar"></div> | |
| <div class="bottom bar"></div> | |
| </div> | |
| <!-- use .navbar-open to open nav --> | |
| <nav class="navbar"> | |
| <ul> | |
| <li class="navbar-item"> | |
| <a href="index.html">Home</a> | |
| </li> | |
| <li class="navbar-item"> | |
| <a href="category.html">Category</a> | |
| </li> | |
| <li class="navbar-item"> | |
| <a href="forum.html">Forum</a> | |
| </li> | |
| <li class="navbar-item"> | |
| <a href="thread.html">Thread</a> | |
| </li> | |
| <!– Show these option only on mobile–> | |
| <li class="navbar-item mobile-only"> | |
| <a href="profile.html">My Profile</a> | |
| </li> | |
| <li class="navbar-item mobile-only"> | |
| <a href="#">Logout</a> | |
| </li> | |
| <li class="navbar-user"> | |
| <a href="#"> | |
| <img class="avatar-small" src="https://pbs.twimg.com/profile_images/881260299420041217/GMVGlDea_400x400.jpg" | |
| alt=""> | |
| <span> | |
| Alex Kyriakidis | |
| <img class="icon-profile" src="../assets/img/arrow-profile.svg" alt=""> | |
| </span> | |
| </a> | |
| <!-- dropdown menu --> | |
| <!-- add class "active-drop" to show the dropdown --> | |
| <div id="user-dropdown"> | |
| <div class="triangle-drop"></div> | |
| <ul class="dropdown-menu"> | |
| <li class="dropdown-menu-item"><a href="profile.html">View profile</a></li> | |
| <li class="dropdown-menu-item"><a href="#">Log out</a></li> | |
| </ul> | |
| </div> | |
| </li> | |
| </ul> | |
| </nav> | |
| </header> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment