Article Title
This is an example paragraph in HTML5.
Module: M2-R5: Web Design & Publishing
Chapter: Ch1 Computer Intro
HTML5 is the latest version of HyperText Markup Language used to structure and present content on the web. It introduces new elements, attributes, and APIs for modern web development, making websites more interactive and multimedia-friendly.
<header>, <footer>, <article>, <section>, <nav><audio> and <video>email, date, number, range<canvas>localStorage and sessionStorage
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>HTML5 Example</title>
</head>
<body>
<header>My Website Header</header>
<nav>Navigation Menu</nav>
<section>
<article>
<h2>Article Title</h2>
<p>This is an example paragraph in HTML5.</p>
</article>
</section>
<footer>My Website Footer</footer>
</body>
</html>
This is an example paragraph in HTML5.