Created
July 6, 2017 00:22
-
-
Save andimariadi/87f69832a9a067ff68528d77a40dac97 to your computer and use it in GitHub Desktop.
Kode lengkap index.html bagaimana cara membuat menu dropdown sederhana
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 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> | |
<link rel="stylesheet" type="text/css" href="styles.css"/> | |
</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