Last active
December 16, 2015 17:59
-
-
Save mkhuda/5474120 to your computer and use it in GitHub Desktop.
New markup language of HTML5
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
<body> | |
<header> | |
<h1>Header HTML5</h1> | |
</header> | |
<nav> | |
<a href="contoh.html">Contoh Navigasi 1</a> | |
<a href="contoh.html">Contoh Navigasi 2</a> | |
<a href="contoh.html">Contoh Navigasi 3</a> | |
</nav> | |
<section> | |
<article> | |
<h2>Header Artikel</h2> | |
<p>Isi Artikel</p> | |
<aside>Konten aside</aside> | |
</article> | |
</section> | |
<footer> | |
<p>Isi footer</p> | |
</footer> | |
</body> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment