HTML Elements
An HTML element is a building block of an HTML document. It consists of a start tag, content, and an end tag.
Syntax
<tagname>content</tagname>
Examples
Heading Element
<h1>This is a heading</h1>
This is a heading
Paragraph Element
<p>This is a paragraph.</p>
This is a paragraph.
Anchor Element
<a href="https://www.example.com">This is a link</a>
This is a linkFormatting Elements
Formatting elements are used to apply formatting to text.
| Element | Type of Text | Example |
|---|---|---|
| <b> | Bold | sample |
| <strong> | Important | sample |
| <i> | Italic | sample |
| <em> | Emphasized | sample |
| <mark> | Highlighted | sample |
| <small> | Smaller | sample |
| <del> | Deleted | |
| <ins> | Inserted | sample |
| <sub> | Subscript | sample |
| <sup> | Superscript | sample |