H5
class H5(attributes: Attributes, classes: AttributeInterface, children: List<InlineTagInterface>) : AbstractTagBuilder<TagInterface> , H5Interface
In HTML, the <h5>
tag is used to define a level 5 heading. It is part of a set of heading tags ranging from <h1>
to <h6>
, with <h1>
being the highest level of heading and <h6>
being the lowest.
The <h5>
tag is typically used to represent headings of even lower importance compared to headings defined with <h1>
, <h2>
, <h3>
, and <h4>
. It's often used for subsections or headings within a subsection.
(ChatGPT, February 23, 2024)
Constructors
Link copied to clipboard
constructor(attributes: Attributes, classes: AttributeInterface, children: List<InlineTagInterface>)