Body

In HTML, the <body> tag is used to define the content of the document, including all the visible elements that users see when they visit a web page. It is one of the structural tags in HTML and is required in every HTML document.

The <body> tag contains all the content that is displayed in the browser window, including text, images, links, multimedia elements, forms, and more. It typically follows the <head> tag in an HTML document and precedes the closing </html> tag.

(ChatGPT, February 23, 2024)

Constructors

Link copied to clipboard
constructor(vararg children: TagInterface)
constructor(attributes: Attributes, vararg children: TagInterface)
constructor(attributes: Attributes, classes: ClassesInterface, vararg children: TagInterface)
constructor(classes: ClassesInterface, vararg children: TagInterface)
constructor(classes: ClassesInterface, children: List<TagInterface>)
constructor(attributes: Attributes, classes: ClassesInterface, children: List<TagInterface>)

Functions

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