DocumentTags

trait DocumentTags[T[_ <: DomHtmlElement], DomHtmlElement, Html <: DomHtmlElement, HtmlHead <: DomHtmlElement, HtmlBase <: DomHtmlElement, HtmlLink <: DomHtmlElement, HtmlMeta <: DomHtmlElement, HtmlScript <: DomHtmlElement, HtmlElement <: DomHtmlElement]
class Object
trait Matchable
class Any

Value members

Concrete fields

lazy val base: T[HtmlBase]

Defines the base URL for relative URLs in the page.

Defines the base URL for relative URLs in the page.

MDN

lazy val head: T[HtmlHead]

Represents a collection of metadata about the document, including links to, or definitions of, scripts and style sheets.

Represents a collection of metadata about the document, including links to, or definitions of, scripts and style sheets.

MDN

lazy val html: T[Html]

Represents the root of an HTML or XHTML document. All other elements must be descendants of this element.

Represents the root of an HTML or XHTML document. All other elements must be descendants of this element.

MDN

lazy val linkTag: T[HtmlLink]

Used to link JavaScript and external CSS with the current HTML document.

Used to link JavaScript and external CSS with the current HTML document.

MDN

lazy val meta: T[HtmlMeta]

Defines metadata that can't be defined using another HTML element.

Defines metadata that can't be defined using another HTML element.

MDN

lazy val noScript: T[HtmlElement]

Defines alternative content to display when the browser doesn't support scripting.

Defines alternative content to display when the browser doesn't support scripting.

MDN

lazy val script: T[HtmlScript]

Defines either an internal script or a link to an external script. The script language is JavaScript.

Defines either an internal script or a link to an external script. The script language is JavaScript.

MDN