H3
class H3(attributes: Attributes, classes: AttributeInterface, children: List<InlineTagInterface>) : AbstractTagBuilder<TagInterface> , H3Interface
In HTML, the <h3> tag is used to define a level 3 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 <h3> tag is typically used to represent subheadings or titles that are of lower importance compared to headings defined with <h1> or <h2>, but of higher importance than headings defined with <h4>, <h5>, or <h6>.
(ChatGPT, February 23, 2024)
Constructors
Link copied to clipboard
constructor(attributes: Attributes, classes: AttributeInterface, children: List<InlineTagInterface>)