HTML5 Basic Example
This is a basic structure and example in HTML5
<!DOCTYPE html>
<html>
<!-- Head Section -->
<head>
<meta charset="utf-8">
<title>HTML5 Basic Example</title>
</head>
<body>
<!-- Header Section -->
<header>
<h1>HTML5 Basic Example</h1>
<p>This is basic example in HTML5 at ExampleCoding</p>
</header>
<!-- Navigation Section -->
<nav>
<ol>
<li><a href="javascript:void(0);">Maths</a></li>
<li><a href="javascript:void(0);">Computer Science</a></li>
<li><a href="javascript:void(0);">Chemistry</a></li>
</ol>
</nav>
<!-- Article Section -->
<article>
<section>
<p>Section 1 content</p>
</section>
</article>
<!-- Aside Section -->
<aside>
<p>aside content</p>
</aside>
<figure align="right">
<img src="../images/logo.png" alt="ExampleCoding" width="200" height="100">
</figure>
<footer>
<p>All Rights Reserved. <a href="javascript:void(0);">ExampleCoding</a></p>
</footer>
</body>
</html>
Output :
Comments will not visible in the final output.