====== Summary of Main HTML Commands ======
HTML (HyperText Markup Language) is the standard language for creating web pages. Below is a summary of some of the most common and essential HTML tags.
===== Structural Tags =====
* **[[html:tags:doctype|]]** - Declares the document type and version of HTML.
* **[[html:tags:html|]]** - The root element of an HTML document.
* **[[html:tags:head|
]]** - Contains meta-information about the document (title, links, scripts).
* **[[html:tags:title|]]** - Sets the title of the document, displayed in the browser tab.
* **[[html:tags:body|]]** - Contains the visible content of the document.
===== Text Formatting =====
* **[[html:tags:h1|
to
]]** - Defines headings, from largest (
) to smallest (
).
* **[[html:tags:p|
]]** - Defines a paragraph.
* **[[html:tags:br| ]]** - Inserts a line break.
* **[[html:tags:hr|
]]** - Inserts a horizontal line.
* **[[html:tags:strong|]]** - Defines bold text.
* **[[html:tags:em|]]** - Defines italicized text.
===== Links and Media =====
* **[[html:tags:a|]]** - Defines a hyperlink. Example: `Link`.
* **[[html:tags:img|]]** - Embeds an image. Example: ``.
* **[[html:tags:video|