Created
September 24, 2021 04:16
-
-
Save minhchu/beaa6b275735148d63b6e9d6ee830a27 to your computer and use it in GitHub Desktop.
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
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta charset="utf-8"> | |
<title>Library Website</title> | |
<!-- CSS only --> | |
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-F3w7mX95PdgyTmZZMECAngseQB83DfGTowi0iMjiWaeVhAn4FJkqJByhZMI3AhiU" crossorigin="anonymous"> | |
<!-- JavaScript Bundle with Popper --> | |
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js" integrity="sha384-/bQdsTh/da6pkI1MST/rWKFNjaCP5gBSY4sEBT38Q/9RBh9AH40zEOg7Hlq2THRZ" crossorigin="anonymous"></script> | |
<style type="text/css"> | |
/* TODO */ | |
</style> | |
</head> | |
<body> | |
<nav class="navigation-top mt-20 pt-20"> | |
<ul class="navigation-list"> | |
<li class="navigation-list__item">Team</li> | |
<li class="navigation-list__item--active">Enterprise</li> | |
<li>Marketplace</li> | |
<ul class="navigation-list__child"> | |
<!-- Learn and Contribue --> | |
<li class="navigation-list__child-title">Learn and Contribue</li> | |
<li class="navigation-list__child-item">Topic</li> | |
<li>Collection</li> | |
<li>Trending</li> | |
<!-- Connect with others --> | |
<li class="navigation-list__child-title">Connect with others</li> | |
<li class="navigation-list__child-item">Topic</li> | |
<li>Events</li> | |
<li>Trending</li> | |
</ul> | |
</ul> | |
</nav> | |
<nav class="navigation-bottom"> | |
<ul> | |
<li>Features</li> | |
<li>Team</li> | |
<li>Enterprise</li> | |
</ul> | |
</nav> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment