Created
June 1, 2017 12:52
-
-
Save andimariadi/03ad8efce832a508498f530c166a1125 to your computer and use it in GitHub Desktop.
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> | |
| <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 style="clear: both"></div> | |
| </div> | |
| <div class="isian"> | |
| <p>Hai website saya menjadi di tengah</p> | |
| <p>Kunjungi juga <a href="http://www.pemulabelajar.com">Pemula Belajar</a>, untuk tutorial yang lain.</p> | |
| </div> | |
| </body> | |
| </html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment