-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
58 additions
and
33 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,37 @@ | ||
<meta charset="utf-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1"> | ||
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@4.6.1/dist/css/bootstrap.min.css"> | ||
<script src="https://cdn.jsdelivr.net/npm/jquery@3.6.0/dist/jquery.slim.min.js"></script> | ||
<script src="https://cdn.jsdelivr.net/npm/popper.js@1.16.1/dist/umd/popper.min.js"></script> | ||
<script src="https://cdn.jsdelivr.net/npm/bootstrap@4.6.1/dist/js/bootstrap.bundle.min.js"></script> | ||
<script src="https://kit.fontawesome.com/a31f53fe58.js" crossorigin="anonymous"></script> | ||
|
||
<!-- Nav Bar --> | ||
<div class="mdc-top-app-bar__row"> | ||
<section class="mdc-top-app-bar__section mdc-top-app-bar__section--align-start"> | ||
<button class="material-icons mdc-top-app-bar__navigation-icon mdc-icon-button" aria-label="Open navigation menu">menu</button> | ||
<span class="mdc-top-app-bar__title">Page title</span> | ||
</section> | ||
<section class="mdc-top-app-bar__section mdc-top-app-bar__section--align-end" role="toolbar"> | ||
<button class="material-icons mdc-top-app-bar__action-item mdc-icon-button" aria-label="Favorite">favorite</button> | ||
<button class="material-icons mdc-top-app-bar__action-item mdc-icon-button" aria-label="Search">search</button> | ||
<button class="material-icons mdc-top-app-bar__action-item mdc-icon-button" aria-label="Options">more_vert</button> | ||
</section> | ||
<!-- A grey horizontal navbar that becomes vertical on small screens --> | ||
<nav class="navbar navbar-expand-sm bg-light"> | ||
<!-- Links --> | ||
<ul class="navbar-nav"> | ||
<li class="nav-item"> | ||
<a class="nav-link" href="../pages/mainPage.html"> | ||
<i class="fa-solid fa-house fa-xl"></i> | ||
</a> | ||
</li> | ||
<li class="nav-item"> | ||
<a class="nav-link" href="../pages/challenge.html"> | ||
<i class="fa-brands fa-gripfire fa-xl"></i> | ||
</a> | ||
</li> | ||
<li class="nav-item"> | ||
<a class="nav-link" href="../pages/myAsset.html"> | ||
<i class="fa-solid fa-square-poll-vertical fa-xl"></i> | ||
</a> | ||
</li> | ||
<li class="nav-item"> | ||
<a class="nav-link" href="../pages/profile.html"> | ||
<i class="fa-solid fa-circle-user fa-xl"></i> | ||
</a> | ||
</li> | ||
</ul> | ||
</nav> | ||
</div> |
Empty file.
This file contains 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
This file contains 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