Created
July 6, 2017 00:16
-
-
Save andimariadi/ca20a1e90a4061e6f47f70986c95e894 to your computer and use it in GitHub Desktop.
Cara membuat dropdown menu dengan 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"> | |
<meta http-equiv="X-UA-Compatible" content="IE=edge"> | |
<meta name="viewport" content="width=device-width, initial-scale=1"> | |
<title>Membuat Dropdown menu navigasi – www.pemulabelajar.com</title> | |
</head> | |
<body> | |
<div class="navigasi"> | |
<nav> | |
<ul> | |
<li><a href="#">Home</a></li> | |
<li><a href="#">Drop 1</a> | |
<ul> | |
<li><a href="#">Menu list 1</a></li> | |
<li><a href="#">Menu list 2</a></li> | |
</ul> | |
</li> | |
</ul> | |
</nav> | |
</div> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment