H4
class H4(attributes: Attributes, classes: AttributeInterface, children: List<InlineTagInterface>) : AbstractTagBuilder<TagInterface> , H4Interface
In HTML, the <h4> tag is used to define a level 4 heading. It's 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 <h4> tag is typically used to represent headings of even lower importance compared to headings defined with <h1>, <h2>, and <h3>. It's often used for subsections or headings within a section.
(ChatGPT, February 23, 2024)
Constructors
Link copied to clipboard
constructor(attributes: Attributes, classes: AttributeInterface, children: List<InlineTagInterface>)