Body
class Body(attributes: Attributes, classes: ClassesInterface, children: List<TagInterface>) : AbstractTagBuilder<TagInterface> , BodyInterface
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)