Nav
class Nav(attributes: Attributes, classes: ClassesInterface, children: List<TagInterface>) : AbstractTagBuilder<TagInterface> , NavInterface
In HTML, the <nav>
tag is a semantic element used to define a section of navigation links within a webpage. It's typically used to wrap around links that navigate to different parts of the website or provide navigation options to users. The <nav>
element is part of HTML5 and provides a way to indicate to both browsers and search engines that the enclosed content is related to navigation.
(ChatGPT, February 26, 2024)