Jinsi ya Kutumia Semantic Elements: header, footer, article, section
🌍 https://www.faulink.com • 📞 +255 693 118 509
Tags:
semantic html, header footer, article section, accessibility, faulink
Keywords:
semantic html tutorial, header footer article, html accessibility
Code (save as video19.html)
<!DOCTYPE html>
<html lang="sw">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width,initial-scale=1">
<title>Semantic HTML - Faulink</title>
</head>
<body>
<header>
<h1>Faulink Learning</h1>
<nav>
<a href="video11.html">Home</a> | <a href="video16.html">Results</a>
</nav>
</header>
<main>
<article>
<h2>Makala: Umuhimu wa HTML</h2>
<section>
<h3>Sehemu ya kwanza</h3>
<p>Maelezo ya sehemu ya kwanza.</p>
</section>
<section>
<h3>Sehemu ya pili</h3>
<p>Maelezo ya sehemu ya pili.</p>
</section>
</article>
</main>
<footer>
<p>contact: +255 693 118 509</p>
</footer>
</body>
</html>