--- layout: default title: Obscure HTML Elements - Shivering Playground description: Exploring lesser-known but useful HTML elements --- ← Back to Playground
Exploring lesser-known but semantically meaningful HTML elements
<mark> elementUsed to highlight or mark text for reference purposes, showing relevance in a particular context.
Using <mark> in a blockquote can be used to highlight sections of the quote that are particularly relevant to your current discussion.
<time> elementRepresents a specific period in time with a machine-readable datetime attribute.
The event will take place on . This helps search engines and assistive technologies understand the exact date being referenced.
<output> elementRepresents the result of a calculation or user action. The for attribute can list the ids of all contributing inputs.
<abbr> element
Use this for abbreviations and acronyms. The title attribute provides the full expansion.
Examples: abbr,
mm,
mph,
kph,
HTML, and
CSS.
<dfn> elementThe definition element marks the term being defined within a sentence.
Use it only when first defining a term. Subsequent uses don't need <dfn>.
CSS is a language used to style HTML documents on the web.
These semantic elements improve: