Head

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(title: TitleInterface, vararg children: TagInterface)
constructor(attributes: Attributes, title: TitleInterface, vararg children: TagInterface)
constructor(attributes: Attributes, classes: ClassesInterface, title: TitleInterface, vararg children: TagInterface)
constructor(classes: ClassesInterface, title: TitleInterface, vararg children: TagInterface)
constructor(classes: ClassesInterface, title: TitleInterface, children: List<TagInterface>)
constructor(attributes: Attributes, classes: ClassesInterface, title: TitleInterface, children: List<TagInterface>)

Functions

Link copied to clipboard
open override fun build(): TagInterface
Link copied to clipboard
fun string(): String