Head
class Head(attributes: Attributes, classes: ClassesInterface, title: TitleInterface, children: List<TagInterface>) : AbstractTagBuilder<TagInterface> , HeadInterface
In HTML, the <head>
tag is a container element that holds metadata and other information about the HTML document. It is part of the structural components of an HTML document and is placed between the opening <html>
tag and the opening <body>
tag. The <head>
element contains various types of metadata and resources that are essential for the proper functioning and presentation of the HTML document.
(ChatGPT, February 23, 2024)
Constructors
Link copied to clipboard
constructor(attributes: Attributes, classes: ClassesInterface, title: TitleInterface, vararg children: TagInterface)
constructor(attributes: Attributes, classes: ClassesInterface, title: TitleInterface, children: List<TagInterface>)