HTML5 Example Codes
Structure Example
<header>
<h1>My Website</h1>
</header>
<section>
<article>
<p>This is an article.</p>
</article>
</section>
<footer>
<p>© 2026</p>
</footer>
Text Formatting Example
<p>This is <strong>important</strong> and <em>emphasized</em> text.</p>
<p>Water formula is H<sub>2</sub>O.</p>
List Example
<ul>
<li>Apple</li>
<li>Banana</li>
</ul>
Table Example
<table>
<tr>
<th>Name</th>
<th>Age</th>
</tr>
<tr>
<td>John</td>
<td>25</td>
</tr>
</table>
Form Example
<form>
<label>Name:</label>
<input type="text">
<button type="submit">Submit</button>
</form>
Multimedia Example
<video controls>
<source src="movie.mp4" type="video/mp4">
</video>