Over the past weeks, I’ve learned a lot about HTML tags, the most important is that there are a lot of tags and each tag has a specific function. I’ll share with you some unusual tags.

The <cite> HTML element is used to describe a reference to a cited creative work, and must include the title of that work.
The <mark> HTML element represents text which is marked or highlighted for reference or notation purposes, due to the marked passage’s relevance or importance in the enclosing context.
The <progress> HTML element displays an indicator showing the completion progress of a task, typically displayed as a progress bar.
The <table> represents tabular data — that is, information presented in a two-dimensional table comprised of rows and columns of cells containing data.
The <colgroup> defines a group of columns within a table.
The <thead> defines a set of rows defining the head of the columns of the table.
The <tbody> encapsulates a set of table rows (<tr> elements), indicating that they comprise the body of the table .
The <tfoot> defines a set of rows summarizing the columns of the table.
The <fieldset> is used to group several controls as well as labels within a web form.
The <figure> represents self-contained content, potentially with an optional caption, which is specified using the<figcaption> element. The figure, its caption, and its contents are referenced as a single unit.
The <abbr> HTML element represents an abbreviation or acronym; the optional title attribute can provide an expansion or description for the abbreviation. If present, title must contain this full description and nothing else