H1
class H1(attributes: Attributes, classes: AttributeInterface, children: List<InlineTagInterface>) : AbstractTagBuilder<TagInterface> , H1Interface
In HTML, the <h1> tag is used to define the most important heading or title on a webpage. It is part of a set of heading tags ranging from <h1> to <h6>, where <h1> represents the highest level of heading and <h6> represents the lowest level of heading.
The <h1> tag is typically used for the main title of the webpage, which often describes the overall topic or purpose of the page. It's important to use <h1> tags for headings that are the most significant in terms of content hierarchy and importance.
(ChatGPT, February 23, 2024)
Constructors
Link copied to clipboard
constructor(attributes: Attributes, classes: AttributeInterface, children: List<InlineTagInterface>)