Created
April 14, 2019 16:35
-
-
Save sebkolind/f308975173dfb4aaaa25bc098d1ad5e7 to your computer and use it in GitHub Desktop.
Mega dropdown - Vanilla JS - HTML
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
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<title>Awesome mega dropdown</title> | |
</head> | |
<body> | |
<nav> | |
<a class="nav-item" href="#">Nav item 1</a> | |
<a class="nav-item" href="#">Nav item 2</a> | |
<a class="nav-item" href="#">Nav item 3</a> | |
</nav> | |
<div class="dropdown"></div> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment