0% found this document useful (0 votes)
4 views2 pages

HTML5 Example Codes

The document provides various HTML5 example codes demonstrating the structure of a webpage, text formatting, lists, tables, forms, and multimedia elements. Each section includes code snippets illustrating how to implement these features in HTML. It serves as a practical reference for web development using HTML5.
Copyright
© All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
4 views2 pages

HTML5 Example Codes

The document provides various HTML5 example codes demonstrating the structure of a webpage, text formatting, lists, tables, forms, and multimedia elements. Each section includes code snippets illustrating how to implement these features in HTML. It serves as a practical reference for web development using HTML5.
Copyright
© All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd

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>

You might also like