Learn what HTML elements are, their types, attributes, and how to structure content on a webpage. Step-by-step examples for beginners included.

📝 What Are HTML Elements?

An HTML element is the building block of a webpage. It consists of:

Start Tag – tells the browser the element type.

Content – the information or text inside the element.

End Tag – closes the element.

Example:

<p>This is a paragraph.</p>


<p> → start tag

This is a paragraph. → content

</p> → end tag

🔹 Empty Elements

Some elements do not have content and do not require an end tag. These are called empty elements.

Example:

<br>
<img src="image.jpg" alt="Example Image">

🔹 Common HTML Elements
Element Description
<h1> to <h6> Headings
<p> Paragraph
<a> Hyperlink
<img> Image
<ul>, <ol>, <li> Lists
<div> Block container
<span> Inline container
🔹 HTML Attributes

Elements can have attributes that provide extra information.

Example:

<a href="https://www.faulink.com/&quot; target="_blank">Visit Faulink</a>
<img src="faulink-logo.png" alt="Faulink Logo">


href → URL for links

target="_blank" → open in new tab

src → image source

alt → alternative text

🔹 Nesting HTML Elements

HTML elements can contain other elements. This is called nesting.

Example:

<div>
<h2>Welcome to Faulink IT</h2>
<p>Learn Web Development and Programming.</p>
<a href="https://www.faulink.com/&quot; target="_blank">Visit Website</a>
</div>

🔗 Links Za Kujifunza Zaidi

🌐 Faulink Official Website
https://www.faulink.com/

📘 Jifunze Web Design & Programming
https://www.faulink.com/excel_mifumo.php

📲 WhatsApp kwa Msaada wa Haraka
https://wa.me/255693118509