public interface Html5 extends HtmlBuilder
This interface contains html5 element types (e.g. Html5.DIV
),
and element builder methods (e.g. _div()
).
Each element type contains methods to set element-specific attributes,
for example A.href(value)
.
For common attributes or non-standard attributes, see methods in Html5.Element
.
If the element is a parent element, it has methods to add children, see Html5.ParentElement
.
A builder method creates an element and adds it to the context parent,
for example, _img()
.
For each parent element, there are also two builder methods that take children,
for example, _div(Object...)
and _div(Runnable)
.
The elements and attributes conform to W3C HTML 5.1 draft.
Each Html5 element type is a subclass of the corresponding Html4
element type
(if it exists in html4).
For example,
Html5.DIV
extends Html4.DIV
.
Three elements in html4, <acronym/big/tt>
, are deprecated in html5;
they don't exist in this interface as element types or builder methods.
Many attributes in html4 are deprecated in html5;
the corresponding methods are marked as deprecated, for example see
Html5.A.name()
.
Modifier and Type | Interface and Description |
---|---|
static interface |
Html5.Element<This extends T4,T4>
Html5 element.
|
static interface |
Html5.ParentElement<This extends T4,T4>
Html5 parent element.
|
static class |
Html5.A
Html5 element
<a> . |
static class |
Html5.ABBR
Html5 element
<abbr> . |
static class |
Html5.ADDRESS
Html5 element
<address> . |
static class |
Html5.AREA
Html5 element
<area> . |
static class |
Html5.ARTICLE
Html5 element
<article> . |
static class |
Html5.ASIDE
Html5 element
<aside> . |
static class |
Html5.AUDIO
Html5 element
<audio> . |
static class |
Html5.B
Html5 element
<b> . |
static class |
Html5.BASE
Html5 element
<base> . |
static class |
Html5.BDI
Html5 element
<bdi> . |
static class |
Html5.BDO
Html5 element
<bdo> . |
static class |
Html5.BLOCKQUOTE
Html5 element
<blockquote> . |
static class |
Html5.BODY
Html5 element
<body> . |
static class |
Html5.BR
Html5 element
<br> . |
static class |
Html5.BUTTON
Html5 element
<button> . |
static class |
Html5.CANVAS
Html5 element
<canvas> . |
static class |
Html5.CAPTION
Html5 element
<caption> . |
static class |
Html5.CITE
Html5 element
<cite> . |
static class |
Html5.CODE
Html5 element
<code> . |
static class |
Html5.COL
Html5 element
<col> . |
static class |
Html5.COLGROUP
Html5 element
<colgroup> . |
static class |
Html5.DATA
Html5 element
<data> . |
static class |
Html5.DATALIST
Html5 element
<datalist> . |
static class |
Html5.DD
Html5 element
<dd> . |
static class |
Html5.DEL
Html5 element
<del> . |
static class |
Html5.DETAILS
Html5 element
<details> . |
static class |
Html5.DFN
Html5 element
<dfn> . |
static class |
Html5.DIALOG
Html5 element
<dialog> . |
static class |
Html5.DIV
Html5 element
<div> . |
static class |
Html5.DL
Html5 element
<dl> . |
static class |
Html5.DT
Html5 element
<dt> . |
static class |
Html5.EM
Html5 element
<em> . |
static class |
Html5.EMBED
Html5 element
<embed> . |
static class |
Html5.FIELDSET
Html5 element
<fieldset> . |
static class |
Html5.FIGCAPTION
Html5 element
<figcaption> . |
static class |
Html5.FIGURE
Html5 element
<figure> . |
static class |
Html5.FOOTER
Html5 element
<footer> . |
static class |
Html5.FORM
Html5 element
<form> . |
static class |
Html5.H1
Html5 element
<h1> . |
static class |
Html5.H2
Html5 element
<h2> . |
static class |
Html5.H3
Html5 element
<h3> . |
static class |
Html5.H4
Html5 element
<h4> . |
static class |
Html5.H5
Html5 element
<h5> . |
static class |
Html5.H6
Html5 element
<h6> . |
static class |
Html5.HEAD
Html5 element
<head> . |
static class |
Html5.HEADER
Html5 element
<header> . |
static class |
Html5.HR
Html5 element
<hr> . |
static class |
Html5.HTML
Html5 element
<html> . |
static class |
Html5.I
Html5 element
<i> . |
static class |
Html5.IFRAME
Html5 element
<iframe> . |
static class |
Html5.IMG
Html5 element
<img> . |
static class |
Html5.INPUT
Html5 element
<input> . |
static class |
Html5.INS
Html5 element
<ins> . |
static class |
Html5.KBD
Html5 element
<kbd> . |
static class |
Html5.KEYGEN
Html5 element
<keygen> . |
static class |
Html5.LABEL
Html5 element
<label> . |
static class |
Html5.LEGEND
Html5 element
<legend> . |
static class |
Html5.LI
Html5 element
<li> . |
static class |
Html5.LINK
Html5 element
<link> . |
static class |
Html5.MAIN
Html5 element
<main> . |
static class |
Html5.MAP
Html5 element
<map> . |
static class |
Html5.MARK
Html5 element
<mark> . |
static class |
Html5.MENU
Html5 element
<menu> . |
static class |
Html5.MENUITEM
Html5 element
<menuitem> . |
static class |
Html5.META
Html5 element
<meta> . |
static class |
Html5.METER
Html5 element
<meter> . |
static class |
Html5.NAV
Html5 element
<nav> . |
static class |
Html5.NOSCRIPT
Html5 element
<noscript> . |
static class |
Html5.OBJECT
Html5 element
<object> . |
static class |
Html5.OL
Html5 element
<ol> . |
static class |
Html5.OPTGROUP
Html5 element
<optgroup> . |
static class |
Html5.OPTION
Html5 element
<option> . |
static class |
Html5.OUTPUT
Html5 element
<output> . |
static class |
Html5.P
Html5 element
<p> . |
static class |
Html5.PARAM
Html5 element
<param> . |
static class |
Html5.PRE
Html5 element
<pre> . |
static class |
Html5.PROGRESS
Html5 element
<progress> . |
static class |
Html5.Q
Html5 element
<q> . |
static class |
Html5.RP
Html5 element
<rp> . |
static class |
Html5.RT
Html5 element
<rt> . |
static class |
Html5.RUBY
Html5 element
<ruby> . |
static class |
Html5.S
Html5 element
<s> . |
static class |
Html5.SAMP
Html5 element
<samp> . |
static class |
Html5.SCRIPT
Html5 element
<script> . |
static class |
Html5.SECTION
Html5 element
<section> . |
static class |
Html5.SELECT
Html5 element
<select> . |
static class |
Html5.SMALL
Html5 element
<small> . |
static class |
Html5.SOURCE
Html5 element
<source> . |
static class |
Html5.SPAN
Html5 element
<span> . |
static class |
Html5.STRONG
Html5 element
<strong> . |
static class |
Html5.STYLE
Html5 element
<style> . |
static class |
Html5.SUB
Html5 element
<sub> . |
static class |
Html5.SUMMARY
Html5 element
<summary> . |
static class |
Html5.SUP
Html5 element
<sup> . |
static class |
Html5.TABLE
Html5 element
<table> . |
static class |
Html5.TBODY
Html5 element
<tbody> . |
static class |
Html5.TD
Html5 element
<td> . |
static class |
Html5.TEMPLATE
Html5 element
<template> . |
static class |
Html5.TEXTAREA
Html5 element
<textarea> . |
static class |
Html5.TFOOT
Html5 element
<tfoot> . |
static class |
Html5.TH
Html5 element
<th> . |
static class |
Html5.THEAD
Html5 element
<thead> . |
static class |
Html5.TIME
Html5 element
<time> . |
static class |
Html5.TITLE
Html5 element
<title> . |
static class |
Html5.TR
Html5 element
<tr> . |
static class |
Html5.TRACK
Html5 element
<track> . |
static class |
Html5.U
Html5 element
<u> . |
static class |
Html5.UL
Html5 element
<ul> . |
static class |
Html5.VAR
Html5 element
<var> . |
static class |
Html5.VIDEO
Html5 element
<video> . |
static class |
Html5.WBR
Html5 element
<wbr> . |
HtmlBuilder.ContextParent
Modifier and Type | Field and Description |
---|---|
static Html5 |
html5
An instance of Html5.
|
static String |
DOCTYPE
The DOCTYPE of HTML 5.
|
Default Methods | |
---|---|
Html5.A |
_a()
Build element
<a> . |
Html5.A |
_a(Object... children)
Build element
<a> with children. |
Html5.A |
_a(Runnable code)
Build element
<a> ; with it as the context parent, run `code`. |
Html5.ABBR |
_abbr()
Build element
<abbr> . |
Html5.ABBR |
_abbr(Object... children)
Build element
<abbr> with children. |
Html5.ABBR |
_abbr(Runnable code)
Build element
<abbr> ; with it as the context parent, run `code`. |
Html5.ADDRESS |
_address()
Build element
<address> . |
Html5.ADDRESS |
_address(Object... children)
Build element
<address> with children. |
Html5.ADDRESS |
_address(Runnable code)
Build element
<address> ; with it as the context parent, run `code`. |
Html5.AREA |
_area()
Build element
<area> . |
Html5.ARTICLE |
_article()
Build element
<article> . |
Html5.ARTICLE |
_article(Object... children)
Build element
<article> with children. |
Html5.ARTICLE |
_article(Runnable code)
Build element
<article> ; with it as the context parent, run `code`. |
Html5.ASIDE |
_aside()
Build element
<aside> . |
Html5.ASIDE |
_aside(Object... children)
Build element
<aside> with children. |
Html5.ASIDE |
_aside(Runnable code)
Build element
<aside> ; with it as the context parent, run `code`. |
Html5.AUDIO |
_audio()
Build element
<audio> . |
Html5.AUDIO |
_audio(Object... children)
Build element
<audio> with children. |
Html5.AUDIO |
_audio(Runnable code)
Build element
<audio> ; with it as the context parent, run `code`. |
Html5.B |
_b()
Build element
<b> . |
Html5.B |
_b(Object... children)
Build element
<b> with children. |
Html5.B |
_b(Runnable code)
Build element
<b> ; with it as the context parent, run `code`. |
Html5.BASE |
_base()
Build element
<base> . |
Html5.BDI |
_bdi()
Build element
<bdi> . |
Html5.BDI |
_bdi(Object... children)
Build element
<bdi> with children. |
Html5.BDI |
_bdi(Runnable code)
Build element
<bdi> ; with it as the context parent, run `code`. |
Html5.BDO |
_bdo()
Build element
<bdo> . |
Html5.BDO |
_bdo(Object... children)
Build element
<bdo> with children. |
Html5.BDO |
_bdo(Runnable code)
Build element
<bdo> ; with it as the context parent, run `code`. |
Html5.BLOCKQUOTE |
_blockquote()
Build element
<blockquote> . |
Html5.BLOCKQUOTE |
_blockquote(Object... children)
Build element
<blockquote> with children. |
Html5.BLOCKQUOTE |
_blockquote(Runnable code)
Build element
<blockquote> ; with it as the context parent, run `code`. |
Html5.BODY |
_body()
Build element
<body> . |
Html5.BODY |
_body(Object... children)
Build element
<body> with children. |
Html5.BODY |
_body(Runnable code)
Build element
<body> ; with it as the context parent, run `code`. |
Html5.BR |
_br()
Build element
<br> . |
Html5.BUTTON |
_button()
Build element
<button> . |
Html5.BUTTON |
_button(Object... children)
Build element
<button> with children. |
Html5.BUTTON |
_button(Runnable code)
Build element
<button> ; with it as the context parent, run `code`. |
Html5.CANVAS |
_canvas()
Build element
<canvas> . |
Html5.CANVAS |
_canvas(Object... children)
Build element
<canvas> with children. |
Html5.CANVAS |
_canvas(Runnable code)
Build element
<canvas> ; with it as the context parent, run `code`. |
Html5.CAPTION |
_caption()
Build element
<caption> . |
Html5.CAPTION |
_caption(Object... children)
Build element
<caption> with children. |
Html5.CAPTION |
_caption(Runnable code)
Build element
<caption> ; with it as the context parent, run `code`. |
Html5.CITE |
_cite()
Build element
<cite> . |
Html5.CITE |
_cite(Object... children)
Build element
<cite> with children. |
Html5.CITE |
_cite(Runnable code)
Build element
<cite> ; with it as the context parent, run `code`. |
Html5.CODE |
_code()
Build element
<code> . |
Html5.CODE |
_code(Object... children)
Build element
<code> with children. |
Html5.CODE |
_code(Runnable code)
Build element
<code> ; with it as the context parent, run `code`. |
Html5.COL |
_col()
Build element
<col> . |
Html5.COLGROUP |
_colgroup()
Build element
<colgroup> . |
Html5.COLGROUP |
_colgroup(Object... children)
Build element
<colgroup> with children. |
Html5.COLGROUP |
_colgroup(Runnable code)
Build element
<colgroup> ; with it as the context parent, run `code`. |
Html5.DATA |
_data()
Build element
<data> . |
Html5.DATA |
_data(Object... children)
Build element
<data> with children. |
Html5.DATA |
_data(Runnable code)
Build element
<data> ; with it as the context parent, run `code`. |
Html5.DATALIST |
_datalist()
Build element
<datalist> . |
Html5.DATALIST |
_datalist(Object... children)
Build element
<datalist> with children. |
Html5.DATALIST |
_datalist(Runnable code)
Build element
<datalist> ; with it as the context parent, run `code`. |
Html5.DD |
_dd()
Build element
<dd> . |
Html5.DD |
_dd(Object... children)
Build element
<dd> with children. |
Html5.DD |
_dd(Runnable code)
Build element
<dd> ; with it as the context parent, run `code`. |
Html5.DEL |
_del()
Build element
<del> . |
Html5.DEL |
_del(Object... children)
Build element
<del> with children. |
Html5.DEL |
_del(Runnable code)
Build element
<del> ; with it as the context parent, run `code`. |
Html5.DETAILS |
_details()
Build element
<details> . |
Html5.DETAILS |
_details(Object... children)
Build element
<details> with children. |
Html5.DETAILS |
_details(Runnable code)
Build element
<details> ; with it as the context parent, run `code`. |
Html5.DFN |
_dfn()
Build element
<dfn> . |
Html5.DFN |
_dfn(Object... children)
Build element
<dfn> with children. |
Html5.DFN |
_dfn(Runnable code)
Build element
<dfn> ; with it as the context parent, run `code`. |
Html5.DIALOG |
_dialog()
Build element
<dialog> . |
Html5.DIALOG |
_dialog(Object... children)
Build element
<dialog> with children. |
Html5.DIALOG |
_dialog(Runnable code)
Build element
<dialog> ; with it as the context parent, run `code`. |
Html5.DIV |
_div()
Build element
<div> . |
Html5.DIV |
_div(Object... children)
Build element
<div> with children. |
Html5.DIV |
_div(Runnable code)
Build element
<div> ; with it as the context parent, run `code`. |
Html5.DL |
_dl()
Build element
<dl> . |
Html5.DL |
_dl(Object... children)
Build element
<dl> with children. |
Html5.DL |
_dl(Runnable code)
Build element
<dl> ; with it as the context parent, run `code`. |
Html5.DT |
_dt()
Build element
<dt> . |
Html5.DT |
_dt(Object... children)
Build element
<dt> with children. |
Html5.DT |
_dt(Runnable code)
Build element
<dt> ; with it as the context parent, run `code`. |
Html5.EM |
_em()
Build element
<em> . |
Html5.EM |
_em(Object... children)
Build element
<em> with children. |
Html5.EM |
_em(Runnable code)
Build element
<em> ; with it as the context parent, run `code`. |
Html5.EMBED |
_embed()
Build element
<embed> . |
Html5.FIELDSET |
_fieldset()
Build element
<fieldset> . |
Html5.FIELDSET |
_fieldset(Object... children)
Build element
<fieldset> with children. |
Html5.FIELDSET |
_fieldset(Runnable code)
Build element
<fieldset> ; with it as the context parent, run `code`. |
Html5.FIGCAPTION |
_figcaption()
Build element
<figcaption> . |
Html5.FIGCAPTION |
_figcaption(Object... children)
Build element
<figcaption> with children. |
Html5.FIGCAPTION |
_figcaption(Runnable code)
Build element
<figcaption> ; with it as the context parent, run `code`. |
Html5.FIGURE |
_figure()
Build element
<figure> . |
Html5.FIGURE |
_figure(Object... children)
Build element
<figure> with children. |
Html5.FIGURE |
_figure(Runnable code)
Build element
<figure> ; with it as the context parent, run `code`. |
Html5.FOOTER |
_footer()
Build element
<footer> . |
Html5.FOOTER |
_footer(Object... children)
Build element
<footer> with children. |
Html5.FOOTER |
_footer(Runnable code)
Build element
<footer> ; with it as the context parent, run `code`. |
Html5.FORM |
_form()
Build element
<form> . |
Html5.FORM |
_form(Object... children)
Build element
<form> with children. |
Html5.FORM |
_form(Runnable code)
Build element
<form> ; with it as the context parent, run `code`. |
Html5.H1 |
_h1()
Build element
<h1> . |
Html5.H1 |
_h1(Object... children)
Build element
<h1> with children. |
Html5.H1 |
_h1(Runnable code)
Build element
<h1> ; with it as the context parent, run `code`. |
Html5.H2 |
_h2()
Build element
<h2> . |
Html5.H2 |
_h2(Object... children)
Build element
<h2> with children. |
Html5.H2 |
_h2(Runnable code)
Build element
<h2> ; with it as the context parent, run `code`. |
Html5.H3 |
_h3()
Build element
<h3> . |
Html5.H3 |
_h3(Object... children)
Build element
<h3> with children. |
Html5.H3 |
_h3(Runnable code)
Build element
<h3> ; with it as the context parent, run `code`. |
Html5.H4 |
_h4()
Build element
<h4> . |
Html5.H4 |
_h4(Object... children)
Build element
<h4> with children. |
Html5.H4 |
_h4(Runnable code)
Build element
<h4> ; with it as the context parent, run `code`. |
Html5.H5 |
_h5()
Build element
<h5> . |
Html5.H5 |
_h5(Object... children)
Build element
<h5> with children. |
Html5.H5 |
_h5(Runnable code)
Build element
<h5> ; with it as the context parent, run `code`. |
Html5.H6 |
_h6()
Build element
<h6> . |
Html5.H6 |
_h6(Object... children)
Build element
<h6> with children. |
Html5.H6 |
_h6(Runnable code)
Build element
<h6> ; with it as the context parent, run `code`. |
Html5.HEAD |
_head()
Build element
<head> . |
Html5.HEAD |
_head(Object... children)
Build element
<head> with children. |
Html5.HEAD |
_head(Runnable code)
Build element
<head> ; with it as the context parent, run `code`. |
Html5.HEADER |
_header()
Build element
<header> . |
Html5.HEADER |
_header(Object... children)
Build element
<header> with children. |
Html5.HEADER |
_header(Runnable code)
Build element
<header> ; with it as the context parent, run `code`. |
Html5.HR |
_hr()
Build element
<hr> . |
Html5.HTML |
_html()
Build element
<html> . |
Html5.HTML |
_html(Object... children)
Build element
<html> with children. |
Html5.HTML |
_html(Runnable code)
Build element
<html> ; with it as the context parent, run `code`. |
Html5.I |
_i()
Build element
<i> . |
Html5.I |
_i(Object... children)
Build element
<i> with children. |
Html5.I |
_i(Runnable code)
Build element
<i> ; with it as the context parent, run `code`. |
Html5.IFRAME |
_iframe()
Build element
<iframe> . |
Html5.IFRAME |
_iframe(Object... children)
Build element
<iframe> with children. |
Html5.IFRAME |
_iframe(Runnable code)
Build element
<iframe> ; with it as the context parent, run `code`. |
Html5.IMG |
_img()
Build element
<img> . |
Html5.INPUT |
_input()
Build element
<input> . |
Html5.INS |
_ins()
Build element
<ins> . |
Html5.INS |
_ins(Object... children)
Build element
<ins> with children. |
Html5.INS |
_ins(Runnable code)
Build element
<ins> ; with it as the context parent, run `code`. |
Html5.KBD |
_kbd()
Build element
<kbd> . |
Html5.KBD |
_kbd(Object... children)
Build element
<kbd> with children. |
Html5.KBD |
_kbd(Runnable code)
Build element
<kbd> ; with it as the context parent, run `code`. |
Html5.KEYGEN |
_keygen()
Build element
<keygen> . |
Html5.LABEL |
_label()
Build element
<label> . |
Html5.LABEL |
_label(Object... children)
Build element
<label> with children. |
Html5.LABEL |
_label(Runnable code)
Build element
<label> ; with it as the context parent, run `code`. |
Html5.LEGEND |
_legend()
Build element
<legend> . |
Html5.LEGEND |
_legend(Object... children)
Build element
<legend> with children. |
Html5.LEGEND |
_legend(Runnable code)
Build element
<legend> ; with it as the context parent, run `code`. |
Html5.LI |
_li()
Build element
<li> . |
Html5.LI |
_li(Object... children)
Build element
<li> with children. |
Html5.LI |
_li(Runnable code)
Build element
<li> ; with it as the context parent, run `code`. |
Html5.LINK |
_link()
Build element
<link> . |
Html5.MAIN |
_main()
Build element
<main> . |
Html5.MAIN |
_main(Object... children)
Build element
<main> with children. |
Html5.MAIN |
_main(Runnable code)
Build element
<main> ; with it as the context parent, run `code`. |
Html5.MAP |
_map()
Build element
<map> . |
Html5.MAP |
_map(Object... children)
Build element
<map> with children. |
Html5.MAP |
_map(Runnable code)
Build element
<map> ; with it as the context parent, run `code`. |
Html5.MARK |
_mark()
Build element
<mark> . |
Html5.MARK |
_mark(Object... children)
Build element
<mark> with children. |
Html5.MARK |
_mark(Runnable code)
Build element
<mark> ; with it as the context parent, run `code`. |
Html5.MENU |
_menu()
Build element
<menu> . |
Html5.MENU |
_menu(Object... children)
Build element
<menu> with children. |
Html5.MENU |
_menu(Runnable code)
Build element
<menu> ; with it as the context parent, run `code`. |
Html5.MENUITEM |
_menuitem()
Build element
<menuitem> . |
Html5.META |
_meta()
Build element
<meta> . |
Html5.METER |
_meter()
Build element
<meter> . |
Html5.METER |
_meter(Object... children)
Build element
<meter> with children. |
Html5.METER |
_meter(Runnable code)
Build element
<meter> ; with it as the context parent, run `code`. |
Html5.NAV |
_nav()
Build element
<nav> . |
Html5.NAV |
_nav(Object... children)
Build element
<nav> with children. |
Html5.NAV |
_nav(Runnable code)
Build element
<nav> ; with it as the context parent, run `code`. |
Html5.NOSCRIPT |
_noscript()
Build element
<noscript> . |
Html5.NOSCRIPT |
_noscript(Object... children)
Build element
<noscript> with children. |
Html5.NOSCRIPT |
_noscript(Runnable code)
Build element
<noscript> ; with it as the context parent, run `code`. |
Html5.OBJECT |
_object()
Build element
<object> . |
Html5.OBJECT |
_object(Object... children)
Build element
<object> with children. |
Html5.OBJECT |
_object(Runnable code)
Build element
<object> ; with it as the context parent, run `code`. |
Html5.OL |
_ol()
Build element
<ol> . |
Html5.OL |
_ol(Object... children)
Build element
<ol> with children. |
Html5.OL |
_ol(Runnable code)
Build element
<ol> ; with it as the context parent, run `code`. |
Html5.OPTGROUP |
_optgroup()
Build element
<optgroup> . |
Html5.OPTGROUP |
_optgroup(Object... children)
Build element
<optgroup> with children. |
Html5.OPTGROUP |
_optgroup(Runnable code)
Build element
<optgroup> ; with it as the context parent, run `code`. |
Html5.OPTION |
_option()
Build element
<option> . |
Html5.OPTION |
_option(Object... children)
Build element
<option> with children. |
Html5.OPTION |
_option(Runnable code)
Build element
<option> ; with it as the context parent, run `code`. |
Html5.OUTPUT |
_output()
Build element
<output> . |
Html5.OUTPUT |
_output(Object... children)
Build element
<output> with children. |
Html5.OUTPUT |
_output(Runnable code)
Build element
<output> ; with it as the context parent, run `code`. |
Html5.P |
_p()
Build element
<p> . |
Html5.P |
_p(Object... children)
Build element
<p> with children. |
Html5.P |
_p(Runnable code)
Build element
<p> ; with it as the context parent, run `code`. |
Html5.PARAM |
_param()
Build element
<param> . |
Html5.PRE |
_pre()
Build element
<pre> . |
Html5.PRE |
_pre(Object... children)
Build element
<pre> with children. |
Html5.PRE |
_pre(Runnable code)
Build element
<pre> ; with it as the context parent, run `code`. |
Html5.PROGRESS |
_progress()
Build element
<progress> . |
Html5.PROGRESS |
_progress(Object... children)
Build element
<progress> with children. |
Html5.PROGRESS |
_progress(Runnable code)
Build element
<progress> ; with it as the context parent, run `code`. |
Html5.Q |
_q()
Build element
<q> . |
Html5.Q |
_q(Object... children)
Build element
<q> with children. |
Html5.Q |
_q(Runnable code)
Build element
<q> ; with it as the context parent, run `code`. |
Html5.RP |
_rp()
Build element
<rp> . |
Html5.RP |
_rp(Object... children)
Build element
<rp> with children. |
Html5.RP |
_rp(Runnable code)
Build element
<rp> ; with it as the context parent, run `code`. |
Html5.RT |
_rt()
Build element
<rt> . |
Html5.RT |
_rt(Object... children)
Build element
<rt> with children. |
Html5.RT |
_rt(Runnable code)
Build element
<rt> ; with it as the context parent, run `code`. |
Html5.RUBY |
_ruby()
Build element
<ruby> . |
Html5.RUBY |
_ruby(Object... children)
Build element
<ruby> with children. |
Html5.RUBY |
_ruby(Runnable code)
Build element
<ruby> ; with it as the context parent, run `code`. |
Html5.S |
_s()
Build element
<s> . |
Html5.S |
_s(Object... children)
Build element
<s> with children. |
Html5.S |
_s(Runnable code)
Build element
<s> ; with it as the context parent, run `code`. |
Html5.SAMP |
_samp()
Build element
<samp> . |
Html5.SAMP |
_samp(Object... children)
Build element
<samp> with children. |
Html5.SAMP |
_samp(Runnable code)
Build element
<samp> ; with it as the context parent, run `code`. |
Html5.SCRIPT |
_script()
Build element
<script> . |
Html5.SCRIPT |
_script(Object... children)
Build element
<script> with children. |
Html5.SCRIPT |
_script(Runnable code)
Build element
<script> ; with it as the context parent, run `code`. |
Html5.SECTION |
_section()
Build element
<section> . |
Html5.SECTION |
_section(Object... children)
Build element
<section> with children. |
Html5.SECTION |
_section(Runnable code)
Build element
<section> ; with it as the context parent, run `code`. |
Html5.SELECT |
_select()
Build element
<select> . |
Html5.SELECT |
_select(Object... children)
Build element
<select> with children. |
Html5.SELECT |
_select(Runnable code)
Build element
<select> ; with it as the context parent, run `code`. |
Html5.SMALL |
_small()
Build element
<small> . |
Html5.SMALL |
_small(Object... children)
Build element
<small> with children. |
Html5.SMALL |
_small(Runnable code)
Build element
<small> ; with it as the context parent, run `code`. |
Html5.SOURCE |
_source()
Build element
<source> . |
Html5.SPAN |
_span()
Build element
<span> . |
Html5.SPAN |
_span(Object... children)
Build element
<span> with children. |
Html5.SPAN |
_span(Runnable code)
Build element
<span> ; with it as the context parent, run `code`. |
Html5.STRONG |
_strong()
Build element
<strong> . |
Html5.STRONG |
_strong(Object... children)
Build element
<strong> with children. |
Html5.STRONG |
_strong(Runnable code)
Build element
<strong> ; with it as the context parent, run `code`. |
Html5.STYLE |
_style()
Build element
<style> . |
Html5.STYLE |
_style(Object... children)
Build element
<style> with children. |
Html5.STYLE |
_style(Runnable code)
Build element
<style> ; with it as the context parent, run `code`. |
Html5.SUB |
_sub()
Build element
<sub> . |
Html5.SUB |
_sub(Object... children)
Build element
<sub> with children. |
Html5.SUB |
_sub(Runnable code)
Build element
<sub> ; with it as the context parent, run `code`. |
Html5.SUMMARY |
_summary()
Build element
<summary> . |
Html5.SUMMARY |
_summary(Object... children)
Build element
<summary> with children. |
Html5.SUMMARY |
_summary(Runnable code)
Build element
<summary> ; with it as the context parent, run `code`. |
Html5.SUP |
_sup()
Build element
<sup> . |
Html5.SUP |
_sup(Object... children)
Build element
<sup> with children. |
Html5.SUP |
_sup(Runnable code)
Build element
<sup> ; with it as the context parent, run `code`. |
Html5.TABLE |
_table()
Build element
<table> . |
Html5.TABLE |
_table(Object... children)
Build element
<table> with children. |
Html5.TABLE |
_table(Runnable code)
Build element
<table> ; with it as the context parent, run `code`. |
Html5.TBODY |
_tbody()
Build element
<tbody> . |
Html5.TBODY |
_tbody(Object... children)
Build element
<tbody> with children. |
Html5.TBODY |
_tbody(Runnable code)
Build element
<tbody> ; with it as the context parent, run `code`. |
Html5.TD |
_td()
Build element
<td> . |
Html5.TD |
_td(Object... children)
Build element
<td> with children. |
Html5.TD |
_td(Runnable code)
Build element
<td> ; with it as the context parent, run `code`. |
Html5.TEMPLATE |
_template()
Build element
<template> . |
Html5.TEMPLATE |
_template(Object... children)
Build element
<template> with children. |
Html5.TEMPLATE |
_template(Runnable code)
Build element
<template> ; with it as the context parent, run `code`. |
Html5.TEXTAREA |
_textarea()
Build element
<textarea> . |
Html5.TEXTAREA |
_textarea(Object... children)
Build element
<textarea> with children. |
Html5.TEXTAREA |
_textarea(Runnable code)
Build element
<textarea> ; with it as the context parent, run `code`. |
Html5.TFOOT |
_tfoot()
Build element
<tfoot> . |
Html5.TFOOT |
_tfoot(Object... children)
Build element
<tfoot> with children. |
Html5.TFOOT |
_tfoot(Runnable code)
Build element
<tfoot> ; with it as the context parent, run `code`. |
Html5.TH |
_th()
Build element
<th> . |
Html5.TH |
_th(Object... children)
Build element
<th> with children. |
Html5.TH |
_th(Runnable code)
Build element
<th> ; with it as the context parent, run `code`. |
Html5.THEAD |
_thead()
Build element
<thead> . |
Html5.THEAD |
_thead(Object... children)
Build element
<thead> with children. |
Html5.THEAD |
_thead(Runnable code)
Build element
<thead> ; with it as the context parent, run `code`. |
Html5.TIME |
_time()
Build element
<time> . |
Html5.TIME |
_time(Object... children)
Build element
<time> with children. |
Html5.TIME |
_time(Runnable code)
Build element
<time> ; with it as the context parent, run `code`. |
Html5.TITLE |
_title()
Build element
<title> . |
Html5.TITLE |
_title(Object... children)
Build element
<title> with children. |
Html5.TITLE |
_title(Runnable code)
Build element
<title> ; with it as the context parent, run `code`. |
Html5.TR |
_tr()
Build element
<tr> . |
Html5.TR |
_tr(Object... children)
Build element
<tr> with children. |
Html5.TR |
_tr(Runnable code)
Build element
<tr> ; with it as the context parent, run `code`. |
Html5.TRACK |
_track()
Build element
<track> . |
Html5.U |
_u()
Build element
<u> . |
Html5.U |
_u(Object... children)
Build element
<u> with children. |
Html5.U |
_u(Runnable code)
Build element
<u> ; with it as the context parent, run `code`. |
Html5.UL |
_ul()
Build element
<ul> . |
Html5.UL |
_ul(Object... children)
Build element
<ul> with children. |
Html5.UL |
_ul(Runnable code)
Build element
<ul> ; with it as the context parent, run `code`. |
Html5.VAR |
_var()
Build element
<var> . |
Html5.VAR |
_var(Object... children)
Build element
<var> with children. |
Html5.VAR |
_var(Runnable code)
Build element
<var> ; with it as the context parent, run `code`. |
Html5.VIDEO |
_video()
Build element
<video> . |
Html5.VIDEO |
_video(Object... children)
Build element
<video> with children. |
Html5.VIDEO |
_video(Runnable code)
Build element
<video> ; with it as the context parent, run `code`. |
Html5.WBR |
_wbr()
Build element
<wbr> . |
static final Html5 html5
Usually members of Html5 are accessed through inheritance. Note that Html5 is an interface with no abstract methods.
However, if inheritance is not suitable in some situations, application code can access Html5 methods through this instance, e.g.
import static bayou.html.Html5.*; html5._div();
static final String DOCTYPE
default Html5.A _a()
<a>
.default Html5.ABBR _abbr()
<abbr>
.default Html5.ABBR _abbr(Object... children)
<abbr>
with children.default Html5.ABBR _abbr(Runnable code)
<abbr>
; with it as the context parent, run `code`.default Html5.ADDRESS _address()
<address>
.default Html5.ADDRESS _address(Object... children)
<address>
with children.default Html5.ADDRESS _address(Runnable code)
<address>
; with it as the context parent, run `code`.default Html5.AREA _area()
<area>
.default Html5.ARTICLE _article()
<article>
.default Html5.ARTICLE _article(Object... children)
<article>
with children.default Html5.ARTICLE _article(Runnable code)
<article>
; with it as the context parent, run `code`.default Html5.ASIDE _aside()
<aside>
.default Html5.ASIDE _aside(Object... children)
<aside>
with children.default Html5.ASIDE _aside(Runnable code)
<aside>
; with it as the context parent, run `code`.default Html5.AUDIO _audio()
<audio>
.default Html5.AUDIO _audio(Object... children)
<audio>
with children.default Html5.AUDIO _audio(Runnable code)
<audio>
; with it as the context parent, run `code`.default Html5.B _b()
<b>
.default Html5.BASE _base()
<base>
.default Html5.BDI _bdi()
<bdi>
.default Html5.BDI _bdi(Runnable code)
<bdi>
; with it as the context parent, run `code`.default Html5.BDO _bdo()
<bdo>
.default Html5.BDO _bdo(Runnable code)
<bdo>
; with it as the context parent, run `code`.default Html5.BLOCKQUOTE _blockquote()
<blockquote>
.default Html5.BLOCKQUOTE _blockquote(Object... children)
<blockquote>
with children.default Html5.BLOCKQUOTE _blockquote(Runnable code)
<blockquote>
; with it as the context parent, run `code`.default Html5.BODY _body()
<body>
.default Html5.BODY _body(Object... children)
<body>
with children.default Html5.BODY _body(Runnable code)
<body>
; with it as the context parent, run `code`.default Html5.BR _br()
<br>
.default Html5.BUTTON _button()
<button>
.default Html5.BUTTON _button(Object... children)
<button>
with children.default Html5.BUTTON _button(Runnable code)
<button>
; with it as the context parent, run `code`.default Html5.CANVAS _canvas()
<canvas>
.default Html5.CANVAS _canvas(Object... children)
<canvas>
with children.default Html5.CANVAS _canvas(Runnable code)
<canvas>
; with it as the context parent, run `code`.default Html5.CAPTION _caption()
<caption>
.default Html5.CAPTION _caption(Object... children)
<caption>
with children.default Html5.CAPTION _caption(Runnable code)
<caption>
; with it as the context parent, run `code`.default Html5.CITE _cite()
<cite>
.default Html5.CITE _cite(Object... children)
<cite>
with children.default Html5.CITE _cite(Runnable code)
<cite>
; with it as the context parent, run `code`.default Html5.CODE _code()
<code>
.default Html5.CODE _code(Object... children)
<code>
with children.default Html5.CODE _code(Runnable code)
<code>
; with it as the context parent, run `code`.default Html5.COL _col()
<col>
.default Html5.COLGROUP _colgroup()
<colgroup>
.default Html5.COLGROUP _colgroup(Object... children)
<colgroup>
with children.default Html5.COLGROUP _colgroup(Runnable code)
<colgroup>
; with it as the context parent, run `code`.default Html5.DATA _data()
<data>
.default Html5.DATA _data(Object... children)
<data>
with children.default Html5.DATA _data(Runnable code)
<data>
; with it as the context parent, run `code`.default Html5.DATALIST _datalist()
<datalist>
.default Html5.DATALIST _datalist(Object... children)
<datalist>
with children.default Html5.DATALIST _datalist(Runnable code)
<datalist>
; with it as the context parent, run `code`.default Html5.DD _dd()
<dd>
.default Html5.DD _dd(Runnable code)
<dd>
; with it as the context parent, run `code`.default Html5.DEL _del()
<del>
.default Html5.DEL _del(Runnable code)
<del>
; with it as the context parent, run `code`.default Html5.DETAILS _details()
<details>
.default Html5.DETAILS _details(Object... children)
<details>
with children.default Html5.DETAILS _details(Runnable code)
<details>
; with it as the context parent, run `code`.default Html5.DFN _dfn()
<dfn>
.default Html5.DFN _dfn(Runnable code)
<dfn>
; with it as the context parent, run `code`.default Html5.DIALOG _dialog()
<dialog>
.default Html5.DIALOG _dialog(Object... children)
<dialog>
with children.default Html5.DIALOG _dialog(Runnable code)
<dialog>
; with it as the context parent, run `code`.default Html5.DIV _div()
<div>
.default Html5.DIV _div(Runnable code)
<div>
; with it as the context parent, run `code`.default Html5.DL _dl()
<dl>
.default Html5.DL _dl(Runnable code)
<dl>
; with it as the context parent, run `code`.default Html5.DT _dt()
<dt>
.default Html5.DT _dt(Runnable code)
<dt>
; with it as the context parent, run `code`.default Html5.EM _em()
<em>
.default Html5.EM _em(Runnable code)
<em>
; with it as the context parent, run `code`.default Html5.EMBED _embed()
<embed>
.default Html5.FIELDSET _fieldset()
<fieldset>
.default Html5.FIELDSET _fieldset(Object... children)
<fieldset>
with children.default Html5.FIELDSET _fieldset(Runnable code)
<fieldset>
; with it as the context parent, run `code`.default Html5.FIGCAPTION _figcaption()
<figcaption>
.default Html5.FIGCAPTION _figcaption(Object... children)
<figcaption>
with children.default Html5.FIGCAPTION _figcaption(Runnable code)
<figcaption>
; with it as the context parent, run `code`.default Html5.FIGURE _figure()
<figure>
.default Html5.FIGURE _figure(Object... children)
<figure>
with children.default Html5.FIGURE _figure(Runnable code)
<figure>
; with it as the context parent, run `code`.default Html5.FOOTER _footer()
<footer>
.default Html5.FOOTER _footer(Object... children)
<footer>
with children.default Html5.FOOTER _footer(Runnable code)
<footer>
; with it as the context parent, run `code`.default Html5.FORM _form()
<form>
.default Html5.FORM _form(Object... children)
<form>
with children.default Html5.FORM _form(Runnable code)
<form>
; with it as the context parent, run `code`.default Html5.H1 _h1()
<h1>
.default Html5.H1 _h1(Runnable code)
<h1>
; with it as the context parent, run `code`.default Html5.H2 _h2()
<h2>
.default Html5.H2 _h2(Runnable code)
<h2>
; with it as the context parent, run `code`.default Html5.H3 _h3()
<h3>
.default Html5.H3 _h3(Runnable code)
<h3>
; with it as the context parent, run `code`.default Html5.H4 _h4()
<h4>
.default Html5.H4 _h4(Runnable code)
<h4>
; with it as the context parent, run `code`.default Html5.H5 _h5()
<h5>
.default Html5.H5 _h5(Runnable code)
<h5>
; with it as the context parent, run `code`.default Html5.H6 _h6()
<h6>
.default Html5.H6 _h6(Runnable code)
<h6>
; with it as the context parent, run `code`.default Html5.HEAD _head()
<head>
.default Html5.HEAD _head(Object... children)
<head>
with children.default Html5.HEAD _head(Runnable code)
<head>
; with it as the context parent, run `code`.default Html5.HEADER _header()
<header>
.default Html5.HEADER _header(Object... children)
<header>
with children.default Html5.HEADER _header(Runnable code)
<header>
; with it as the context parent, run `code`.default Html5.HR _hr()
<hr>
.default Html5.HTML _html()
<html>
.default Html5.HTML _html(Object... children)
<html>
with children.default Html5.HTML _html(Runnable code)
<html>
; with it as the context parent, run `code`.default Html5.I _i()
<i>
.default Html5.IFRAME _iframe()
<iframe>
.default Html5.IFRAME _iframe(Object... children)
<iframe>
with children.default Html5.IFRAME _iframe(Runnable code)
<iframe>
; with it as the context parent, run `code`.default Html5.IMG _img()
<img>
.default Html5.INPUT _input()
<input>
.default Html5.INS _ins()
<ins>
.default Html5.INS _ins(Runnable code)
<ins>
; with it as the context parent, run `code`.default Html5.KBD _kbd()
<kbd>
.default Html5.KBD _kbd(Runnable code)
<kbd>
; with it as the context parent, run `code`.default Html5.KEYGEN _keygen()
<keygen>
.default Html5.LABEL _label()
<label>
.default Html5.LABEL _label(Object... children)
<label>
with children.default Html5.LABEL _label(Runnable code)
<label>
; with it as the context parent, run `code`.default Html5.LEGEND _legend()
<legend>
.default Html5.LEGEND _legend(Object... children)
<legend>
with children.default Html5.LEGEND _legend(Runnable code)
<legend>
; with it as the context parent, run `code`.default Html5.LI _li()
<li>
.default Html5.LI _li(Runnable code)
<li>
; with it as the context parent, run `code`.default Html5.LINK _link()
<link>
.default Html5.MAIN _main()
<main>
.default Html5.MAIN _main(Object... children)
<main>
with children.default Html5.MAIN _main(Runnable code)
<main>
; with it as the context parent, run `code`.default Html5.MAP _map()
<map>
.default Html5.MAP _map(Runnable code)
<map>
; with it as the context parent, run `code`.default Html5.MARK _mark()
<mark>
.default Html5.MARK _mark(Object... children)
<mark>
with children.default Html5.MARK _mark(Runnable code)
<mark>
; with it as the context parent, run `code`.default Html5.MENU _menu()
<menu>
.default Html5.MENU _menu(Object... children)
<menu>
with children.default Html5.MENU _menu(Runnable code)
<menu>
; with it as the context parent, run `code`.default Html5.MENUITEM _menuitem()
<menuitem>
.default Html5.META _meta()
<meta>
.default Html5.METER _meter()
<meter>
.default Html5.METER _meter(Object... children)
<meter>
with children.default Html5.METER _meter(Runnable code)
<meter>
; with it as the context parent, run `code`.default Html5.NAV _nav()
<nav>
.default Html5.NAV _nav(Runnable code)
<nav>
; with it as the context parent, run `code`.default Html5.NOSCRIPT _noscript()
<noscript>
.default Html5.NOSCRIPT _noscript(Object... children)
<noscript>
with children.default Html5.NOSCRIPT _noscript(Runnable code)
<noscript>
; with it as the context parent, run `code`.default Html5.OBJECT _object()
<object>
.default Html5.OBJECT _object(Object... children)
<object>
with children.default Html5.OBJECT _object(Runnable code)
<object>
; with it as the context parent, run `code`.default Html5.OL _ol()
<ol>
.default Html5.OL _ol(Runnable code)
<ol>
; with it as the context parent, run `code`.default Html5.OPTGROUP _optgroup()
<optgroup>
.default Html5.OPTGROUP _optgroup(Object... children)
<optgroup>
with children.default Html5.OPTGROUP _optgroup(Runnable code)
<optgroup>
; with it as the context parent, run `code`.default Html5.OPTION _option()
<option>
.default Html5.OPTION _option(Object... children)
<option>
with children.default Html5.OPTION _option(Runnable code)
<option>
; with it as the context parent, run `code`.default Html5.OUTPUT _output()
<output>
.default Html5.OUTPUT _output(Object... children)
<output>
with children.default Html5.OUTPUT _output(Runnable code)
<output>
; with it as the context parent, run `code`.default Html5.P _p()
<p>
.default Html5.PARAM _param()
<param>
.default Html5.PRE _pre()
<pre>
.default Html5.PRE _pre(Runnable code)
<pre>
; with it as the context parent, run `code`.default Html5.PROGRESS _progress()
<progress>
.default Html5.PROGRESS _progress(Object... children)
<progress>
with children.default Html5.PROGRESS _progress(Runnable code)
<progress>
; with it as the context parent, run `code`.default Html5.Q _q()
<q>
.default Html5.RP _rp()
<rp>
.default Html5.RP _rp(Runnable code)
<rp>
; with it as the context parent, run `code`.default Html5.RT _rt()
<rt>
.default Html5.RT _rt(Runnable code)
<rt>
; with it as the context parent, run `code`.default Html5.RUBY _ruby()
<ruby>
.default Html5.RUBY _ruby(Object... children)
<ruby>
with children.default Html5.RUBY _ruby(Runnable code)
<ruby>
; with it as the context parent, run `code`.default Html5.S _s()
<s>
.default Html5.SAMP _samp()
<samp>
.default Html5.SAMP _samp(Object... children)
<samp>
with children.default Html5.SAMP _samp(Runnable code)
<samp>
; with it as the context parent, run `code`.default Html5.SCRIPT _script()
<script>
.default Html5.SCRIPT _script(Object... children)
<script>
with children.default Html5.SCRIPT _script(Runnable code)
<script>
; with it as the context parent, run `code`.default Html5.SECTION _section()
<section>
.default Html5.SECTION _section(Object... children)
<section>
with children.default Html5.SECTION _section(Runnable code)
<section>
; with it as the context parent, run `code`.default Html5.SELECT _select()
<select>
.default Html5.SELECT _select(Object... children)
<select>
with children.default Html5.SELECT _select(Runnable code)
<select>
; with it as the context parent, run `code`.default Html5.SMALL _small()
<small>
.default Html5.SMALL _small(Object... children)
<small>
with children.default Html5.SMALL _small(Runnable code)
<small>
; with it as the context parent, run `code`.default Html5.SOURCE _source()
<source>
.default Html5.SPAN _span()
<span>
.default Html5.SPAN _span(Object... children)
<span>
with children.default Html5.SPAN _span(Runnable code)
<span>
; with it as the context parent, run `code`.default Html5.STRONG _strong()
<strong>
.default Html5.STRONG _strong(Object... children)
<strong>
with children.default Html5.STRONG _strong(Runnable code)
<strong>
; with it as the context parent, run `code`.default Html5.STYLE _style()
<style>
.default Html5.STYLE _style(Object... children)
<style>
with children.default Html5.STYLE _style(Runnable code)
<style>
; with it as the context parent, run `code`.default Html5.SUB _sub()
<sub>
.default Html5.SUB _sub(Runnable code)
<sub>
; with it as the context parent, run `code`.default Html5.SUMMARY _summary()
<summary>
.default Html5.SUMMARY _summary(Object... children)
<summary>
with children.default Html5.SUMMARY _summary(Runnable code)
<summary>
; with it as the context parent, run `code`.default Html5.SUP _sup()
<sup>
.default Html5.SUP _sup(Runnable code)
<sup>
; with it as the context parent, run `code`.default Html5.TABLE _table()
<table>
.default Html5.TABLE _table(Object... children)
<table>
with children.default Html5.TABLE _table(Runnable code)
<table>
; with it as the context parent, run `code`.default Html5.TBODY _tbody()
<tbody>
.default Html5.TBODY _tbody(Object... children)
<tbody>
with children.default Html5.TBODY _tbody(Runnable code)
<tbody>
; with it as the context parent, run `code`.default Html5.TD _td()
<td>
.default Html5.TD _td(Runnable code)
<td>
; with it as the context parent, run `code`.default Html5.TEMPLATE _template()
<template>
.default Html5.TEMPLATE _template(Object... children)
<template>
with children.default Html5.TEMPLATE _template(Runnable code)
<template>
; with it as the context parent, run `code`.default Html5.TEXTAREA _textarea()
<textarea>
.default Html5.TEXTAREA _textarea(Object... children)
<textarea>
with children.default Html5.TEXTAREA _textarea(Runnable code)
<textarea>
; with it as the context parent, run `code`.default Html5.TFOOT _tfoot()
<tfoot>
.default Html5.TFOOT _tfoot(Object... children)
<tfoot>
with children.default Html5.TFOOT _tfoot(Runnable code)
<tfoot>
; with it as the context parent, run `code`.default Html5.TH _th()
<th>
.default Html5.TH _th(Runnable code)
<th>
; with it as the context parent, run `code`.default Html5.THEAD _thead()
<thead>
.default Html5.THEAD _thead(Object... children)
<thead>
with children.default Html5.THEAD _thead(Runnable code)
<thead>
; with it as the context parent, run `code`.default Html5.TIME _time()
<time>
.default Html5.TIME _time(Object... children)
<time>
with children.default Html5.TIME _time(Runnable code)
<time>
; with it as the context parent, run `code`.default Html5.TITLE _title()
<title>
.default Html5.TITLE _title(Object... children)
<title>
with children.default Html5.TITLE _title(Runnable code)
<title>
; with it as the context parent, run `code`.default Html5.TR _tr()
<tr>
.default Html5.TR _tr(Runnable code)
<tr>
; with it as the context parent, run `code`.default Html5.TRACK _track()
<track>
.default Html5.U _u()
<u>
.default Html5.UL _ul()
<ul>
.default Html5.UL _ul(Runnable code)
<ul>
; with it as the context parent, run `code`.default Html5.VAR _var()
<var>
.default Html5.VAR _var(Runnable code)
<var>
; with it as the context parent, run `code`.default Html5.VIDEO _video()
<video>
.default Html5.VIDEO _video(Object... children)
<video>
with children.default Html5.VIDEO _video(Runnable code)
<video>
; with it as the context parent, run `code`.default Html5.WBR _wbr()
<wbr>
.