public interface Html4 extends HtmlBuilder
This interface contains html4 element types (e.g. Html4.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 Html4.Element
.
If the element is a parent element, it has methods to add children, see Html4.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 HTML 4.01 Strict DTD, with the following exceptions:
See also Html5
.
Modifier and Type | Interface and Description |
---|---|
static interface |
Html4.Element<This>
Html4 element.
|
static interface |
Html4.ParentElement<This>
Html4 parent element.
|
static class |
Html4.A
Html4 element
<a> . |
static class |
Html4.ABBR
Html4 element
<abbr> . |
static class |
Html4.ACRONYM
Html4 element
<acronym> . |
static class |
Html4.ADDRESS
Html4 element
<address> . |
static class |
Html4.AREA
Html4 element
<area> . |
static class |
Html4.B
Html4 element
<b> . |
static class |
Html4.BASE
Html4 element
<base> . |
static class |
Html4.BDO
Html4 element
<bdo> . |
static class |
Html4.BIG
Html4 element
<big> . |
static class |
Html4.BLOCKQUOTE
Html4 element
<blockquote> . |
static class |
Html4.BODY
Html4 element
<body> . |
static class |
Html4.BR
Html4 element
<br> . |
static class |
Html4.BUTTON
Html4 element
<button> . |
static class |
Html4.CAPTION
Html4 element
<caption> . |
static class |
Html4.CITE
Html4 element
<cite> . |
static class |
Html4.CODE
Html4 element
<code> . |
static class |
Html4.COL
Html4 element
<col> . |
static class |
Html4.COLGROUP
Html4 element
<colgroup> . |
static class |
Html4.DD
Html4 element
<dd> . |
static class |
Html4.DEL
Html4 element
<del> . |
static class |
Html4.DFN
Html4 element
<dfn> . |
static class |
Html4.DIV
Html4 element
<div> . |
static class |
Html4.DL
Html4 element
<dl> . |
static class |
Html4.DT
Html4 element
<dt> . |
static class |
Html4.EM
Html4 element
<em> . |
static class |
Html4.FIELDSET
Html4 element
<fieldset> . |
static class |
Html4.FORM
Html4 element
<form> . |
static class |
Html4.H1
Html4 element
<h1> . |
static class |
Html4.H2
Html4 element
<h2> . |
static class |
Html4.H3
Html4 element
<h3> . |
static class |
Html4.H4
Html4 element
<h4> . |
static class |
Html4.H5
Html4 element
<h5> . |
static class |
Html4.H6
Html4 element
<h6> . |
static class |
Html4.HEAD
Html4 element
<head> . |
static class |
Html4.HR
Html4 element
<hr> . |
static class |
Html4.HTML
Html4 element
<html> . |
static class |
Html4.I
Html4 element
<i> . |
static class |
Html4.IFRAME
Html4 element
<iframe> . |
static class |
Html4.IMG
Html4 element
<img> . |
static class |
Html4.INPUT
Html4 element
<input> . |
static class |
Html4.INS
Html4 element
<ins> . |
static class |
Html4.KBD
Html4 element
<kbd> . |
static class |
Html4.LABEL
Html4 element
<label> . |
static class |
Html4.LEGEND
Html4 element
<legend> . |
static class |
Html4.LI
Html4 element
<li> . |
static class |
Html4.LINK
Html4 element
<link> . |
static class |
Html4.MAP
Html4 element
<map> . |
static class |
Html4.META
Html4 element
<meta> . |
static class |
Html4.NOSCRIPT
Html4 element
<noscript> . |
static class |
Html4.OBJECT
Html4 element
<object> . |
static class |
Html4.OL
Html4 element
<ol> . |
static class |
Html4.OPTGROUP
Html4 element
<optgroup> . |
static class |
Html4.OPTION
Html4 element
<option> . |
static class |
Html4.P
Html4 element
<p> . |
static class |
Html4.PARAM
Html4 element
<param> . |
static class |
Html4.PRE
Html4 element
<pre> . |
static class |
Html4.Q
Html4 element
<q> . |
static class |
Html4.SAMP
Html4 element
<samp> . |
static class |
Html4.SCRIPT
Html4 element
<script> . |
static class |
Html4.SELECT
Html4 element
<select> . |
static class |
Html4.SMALL
Html4 element
<small> . |
static class |
Html4.SPAN
Html4 element
<span> . |
static class |
Html4.STRONG
Html4 element
<strong> . |
static class |
Html4.STYLE
Html4 element
<style> . |
static class |
Html4.SUB
Html4 element
<sub> . |
static class |
Html4.SUP
Html4 element
<sup> . |
static class |
Html4.TABLE
Html4 element
<table> . |
static class |
Html4.TBODY
Html4 element
<tbody> . |
static class |
Html4.TD
Html4 element
<td> . |
static class |
Html4.TEXTAREA
Html4 element
<textarea> . |
static class |
Html4.TFOOT
Html4 element
<tfoot> . |
static class |
Html4.TH
Html4 element
<th> . |
static class |
Html4.THEAD
Html4 element
<thead> . |
static class |
Html4.TITLE
Html4 element
<title> . |
static class |
Html4.TR
Html4 element
<tr> . |
static class |
Html4.TT
Html4 element
<tt> . |
static class |
Html4.UL
Html4 element
<ul> . |
static class |
Html4.VAR
Html4 element
<var> . |
HtmlBuilder.ContextParent
Modifier and Type | Field and Description |
---|---|
static Html4 |
html4
An instance of Html4.
|
static String |
DOCTYPE
The DOCTYPE of HTML 4.01 Strict.
|
Default Methods | |
---|---|
Html4.A |
_a()
Build element
<a> . |
Html4.A |
_a(Object... children)
Build element
<a> with children. |
Html4.A |
_a(Runnable code)
Build element
<a> ; with it as the context parent, run `code`. |
Html4.ABBR |
_abbr()
Build element
<abbr> . |
Html4.ABBR |
_abbr(Object... children)
Build element
<abbr> with children. |
Html4.ABBR |
_abbr(Runnable code)
Build element
<abbr> ; with it as the context parent, run `code`. |
Html4.ACRONYM |
_acronym()
Build element
<acronym> . |
Html4.ACRONYM |
_acronym(Object... children)
Build element
<acronym> with children. |
Html4.ACRONYM |
_acronym(Runnable code)
Build element
<acronym> ; with it as the context parent, run `code`. |
Html4.ADDRESS |
_address()
Build element
<address> . |
Html4.ADDRESS |
_address(Object... children)
Build element
<address> with children. |
Html4.ADDRESS |
_address(Runnable code)
Build element
<address> ; with it as the context parent, run `code`. |
Html4.AREA |
_area()
Build element
<area> . |
Html4.B |
_b()
Build element
<b> . |
Html4.B |
_b(Object... children)
Build element
<b> with children. |
Html4.B |
_b(Runnable code)
Build element
<b> ; with it as the context parent, run `code`. |
Html4.BASE |
_base()
Build element
<base> . |
Html4.BDO |
_bdo()
Build element
<bdo> . |
Html4.BDO |
_bdo(Object... children)
Build element
<bdo> with children. |
Html4.BDO |
_bdo(Runnable code)
Build element
<bdo> ; with it as the context parent, run `code`. |
Html4.BIG |
_big()
Build element
<big> . |
Html4.BIG |
_big(Object... children)
Build element
<big> with children. |
Html4.BIG |
_big(Runnable code)
Build element
<big> ; with it as the context parent, run `code`. |
Html4.BLOCKQUOTE |
_blockquote()
Build element
<blockquote> . |
Html4.BLOCKQUOTE |
_blockquote(Object... children)
Build element
<blockquote> with children. |
Html4.BLOCKQUOTE |
_blockquote(Runnable code)
Build element
<blockquote> ; with it as the context parent, run `code`. |
Html4.BODY |
_body()
Build element
<body> . |
Html4.BODY |
_body(Object... children)
Build element
<body> with children. |
Html4.BODY |
_body(Runnable code)
Build element
<body> ; with it as the context parent, run `code`. |
Html4.BR |
_br()
Build element
<br> . |
Html4.BUTTON |
_button()
Build element
<button> . |
Html4.BUTTON |
_button(Object... children)
Build element
<button> with children. |
Html4.BUTTON |
_button(Runnable code)
Build element
<button> ; with it as the context parent, run `code`. |
Html4.CAPTION |
_caption()
Build element
<caption> . |
Html4.CAPTION |
_caption(Object... children)
Build element
<caption> with children. |
Html4.CAPTION |
_caption(Runnable code)
Build element
<caption> ; with it as the context parent, run `code`. |
Html4.CITE |
_cite()
Build element
<cite> . |
Html4.CITE |
_cite(Object... children)
Build element
<cite> with children. |
Html4.CITE |
_cite(Runnable code)
Build element
<cite> ; with it as the context parent, run `code`. |
Html4.CODE |
_code()
Build element
<code> . |
Html4.CODE |
_code(Object... children)
Build element
<code> with children. |
Html4.CODE |
_code(Runnable code)
Build element
<code> ; with it as the context parent, run `code`. |
Html4.COL |
_col()
Build element
<col> . |
Html4.COLGROUP |
_colgroup()
Build element
<colgroup> . |
Html4.COLGROUP |
_colgroup(Object... children)
Build element
<colgroup> with children. |
Html4.COLGROUP |
_colgroup(Runnable code)
Build element
<colgroup> ; with it as the context parent, run `code`. |
Html4.DD |
_dd()
Build element
<dd> . |
Html4.DD |
_dd(Object... children)
Build element
<dd> with children. |
Html4.DD |
_dd(Runnable code)
Build element
<dd> ; with it as the context parent, run `code`. |
Html4.DEL |
_del()
Build element
<del> . |
Html4.DEL |
_del(Object... children)
Build element
<del> with children. |
Html4.DEL |
_del(Runnable code)
Build element
<del> ; with it as the context parent, run `code`. |
Html4.DFN |
_dfn()
Build element
<dfn> . |
Html4.DFN |
_dfn(Object... children)
Build element
<dfn> with children. |
Html4.DFN |
_dfn(Runnable code)
Build element
<dfn> ; with it as the context parent, run `code`. |
Html4.DIV |
_div()
Build element
<div> . |
Html4.DIV |
_div(Object... children)
Build element
<div> with children. |
Html4.DIV |
_div(Runnable code)
Build element
<div> ; with it as the context parent, run `code`. |
Html4.DL |
_dl()
Build element
<dl> . |
Html4.DL |
_dl(Object... children)
Build element
<dl> with children. |
Html4.DL |
_dl(Runnable code)
Build element
<dl> ; with it as the context parent, run `code`. |
Html4.DT |
_dt()
Build element
<dt> . |
Html4.DT |
_dt(Object... children)
Build element
<dt> with children. |
Html4.DT |
_dt(Runnable code)
Build element
<dt> ; with it as the context parent, run `code`. |
Html4.EM |
_em()
Build element
<em> . |
Html4.EM |
_em(Object... children)
Build element
<em> with children. |
Html4.EM |
_em(Runnable code)
Build element
<em> ; with it as the context parent, run `code`. |
Html4.FIELDSET |
_fieldset()
Build element
<fieldset> . |
Html4.FIELDSET |
_fieldset(Object... children)
Build element
<fieldset> with children. |
Html4.FIELDSET |
_fieldset(Runnable code)
Build element
<fieldset> ; with it as the context parent, run `code`. |
Html4.FORM |
_form()
Build element
<form> . |
Html4.FORM |
_form(Object... children)
Build element
<form> with children. |
Html4.FORM |
_form(Runnable code)
Build element
<form> ; with it as the context parent, run `code`. |
Html4.H1 |
_h1()
Build element
<h1> . |
Html4.H1 |
_h1(Object... children)
Build element
<h1> with children. |
Html4.H1 |
_h1(Runnable code)
Build element
<h1> ; with it as the context parent, run `code`. |
Html4.H2 |
_h2()
Build element
<h2> . |
Html4.H2 |
_h2(Object... children)
Build element
<h2> with children. |
Html4.H2 |
_h2(Runnable code)
Build element
<h2> ; with it as the context parent, run `code`. |
Html4.H3 |
_h3()
Build element
<h3> . |
Html4.H3 |
_h3(Object... children)
Build element
<h3> with children. |
Html4.H3 |
_h3(Runnable code)
Build element
<h3> ; with it as the context parent, run `code`. |
Html4.H4 |
_h4()
Build element
<h4> . |
Html4.H4 |
_h4(Object... children)
Build element
<h4> with children. |
Html4.H4 |
_h4(Runnable code)
Build element
<h4> ; with it as the context parent, run `code`. |
Html4.H5 |
_h5()
Build element
<h5> . |
Html4.H5 |
_h5(Object... children)
Build element
<h5> with children. |
Html4.H5 |
_h5(Runnable code)
Build element
<h5> ; with it as the context parent, run `code`. |
Html4.H6 |
_h6()
Build element
<h6> . |
Html4.H6 |
_h6(Object... children)
Build element
<h6> with children. |
Html4.H6 |
_h6(Runnable code)
Build element
<h6> ; with it as the context parent, run `code`. |
Html4.HEAD |
_head()
Build element
<head> . |
Html4.HEAD |
_head(Object... children)
Build element
<head> with children. |
Html4.HEAD |
_head(Runnable code)
Build element
<head> ; with it as the context parent, run `code`. |
Html4.HR |
_hr()
Build element
<hr> . |
Html4.HTML |
_html()
Build element
<html> . |
Html4.HTML |
_html(Object... children)
Build element
<html> with children. |
Html4.HTML |
_html(Runnable code)
Build element
<html> ; with it as the context parent, run `code`. |
Html4.I |
_i()
Build element
<i> . |
Html4.I |
_i(Object... children)
Build element
<i> with children. |
Html4.I |
_i(Runnable code)
Build element
<i> ; with it as the context parent, run `code`. |
Html4.IFRAME |
_iframe()
Build element
<iframe> . |
Html4.IFRAME |
_iframe(Object... children)
Build element
<iframe> with children. |
Html4.IFRAME |
_iframe(Runnable code)
Build element
<iframe> ; with it as the context parent, run `code`. |
Html4.IMG |
_img()
Build element
<img> . |
Html4.INPUT |
_input()
Build element
<input> . |
Html4.INS |
_ins()
Build element
<ins> . |
Html4.INS |
_ins(Object... children)
Build element
<ins> with children. |
Html4.INS |
_ins(Runnable code)
Build element
<ins> ; with it as the context parent, run `code`. |
Html4.KBD |
_kbd()
Build element
<kbd> . |
Html4.KBD |
_kbd(Object... children)
Build element
<kbd> with children. |
Html4.KBD |
_kbd(Runnable code)
Build element
<kbd> ; with it as the context parent, run `code`. |
Html4.LABEL |
_label()
Build element
<label> . |
Html4.LABEL |
_label(Object... children)
Build element
<label> with children. |
Html4.LABEL |
_label(Runnable code)
Build element
<label> ; with it as the context parent, run `code`. |
Html4.LEGEND |
_legend()
Build element
<legend> . |
Html4.LEGEND |
_legend(Object... children)
Build element
<legend> with children. |
Html4.LEGEND |
_legend(Runnable code)
Build element
<legend> ; with it as the context parent, run `code`. |
Html4.LI |
_li()
Build element
<li> . |
Html4.LI |
_li(Object... children)
Build element
<li> with children. |
Html4.LI |
_li(Runnable code)
Build element
<li> ; with it as the context parent, run `code`. |
Html4.LINK |
_link()
Build element
<link> . |
Html4.MAP |
_map()
Build element
<map> . |
Html4.MAP |
_map(Object... children)
Build element
<map> with children. |
Html4.MAP |
_map(Runnable code)
Build element
<map> ; with it as the context parent, run `code`. |
Html4.META |
_meta()
Build element
<meta> . |
Html4.NOSCRIPT |
_noscript()
Build element
<noscript> . |
Html4.NOSCRIPT |
_noscript(Object... children)
Build element
<noscript> with children. |
Html4.NOSCRIPT |
_noscript(Runnable code)
Build element
<noscript> ; with it as the context parent, run `code`. |
Html4.OBJECT |
_object()
Build element
<object> . |
Html4.OBJECT |
_object(Object... children)
Build element
<object> with children. |
Html4.OBJECT |
_object(Runnable code)
Build element
<object> ; with it as the context parent, run `code`. |
Html4.OL |
_ol()
Build element
<ol> . |
Html4.OL |
_ol(Object... children)
Build element
<ol> with children. |
Html4.OL |
_ol(Runnable code)
Build element
<ol> ; with it as the context parent, run `code`. |
Html4.OPTGROUP |
_optgroup()
Build element
<optgroup> . |
Html4.OPTGROUP |
_optgroup(Object... children)
Build element
<optgroup> with children. |
Html4.OPTGROUP |
_optgroup(Runnable code)
Build element
<optgroup> ; with it as the context parent, run `code`. |
Html4.OPTION |
_option()
Build element
<option> . |
Html4.OPTION |
_option(Object... children)
Build element
<option> with children. |
Html4.OPTION |
_option(Runnable code)
Build element
<option> ; with it as the context parent, run `code`. |
Html4.P |
_p()
Build element
<p> . |
Html4.P |
_p(Object... children)
Build element
<p> with children. |
Html4.P |
_p(Runnable code)
Build element
<p> ; with it as the context parent, run `code`. |
Html4.PARAM |
_param()
Build element
<param> . |
Html4.PRE |
_pre()
Build element
<pre> . |
Html4.PRE |
_pre(Object... children)
Build element
<pre> with children. |
Html4.PRE |
_pre(Runnable code)
Build element
<pre> ; with it as the context parent, run `code`. |
Html4.Q |
_q()
Build element
<q> . |
Html4.Q |
_q(Object... children)
Build element
<q> with children. |
Html4.Q |
_q(Runnable code)
Build element
<q> ; with it as the context parent, run `code`. |
Html4.SAMP |
_samp()
Build element
<samp> . |
Html4.SAMP |
_samp(Object... children)
Build element
<samp> with children. |
Html4.SAMP |
_samp(Runnable code)
Build element
<samp> ; with it as the context parent, run `code`. |
Html4.SCRIPT |
_script()
Build element
<script> . |
Html4.SCRIPT |
_script(Object... children)
Build element
<script> with children. |
Html4.SCRIPT |
_script(Runnable code)
Build element
<script> ; with it as the context parent, run `code`. |
Html4.SELECT |
_select()
Build element
<select> . |
Html4.SELECT |
_select(Object... children)
Build element
<select> with children. |
Html4.SELECT |
_select(Runnable code)
Build element
<select> ; with it as the context parent, run `code`. |
Html4.SMALL |
_small()
Build element
<small> . |
Html4.SMALL |
_small(Object... children)
Build element
<small> with children. |
Html4.SMALL |
_small(Runnable code)
Build element
<small> ; with it as the context parent, run `code`. |
Html4.SPAN |
_span()
Build element
<span> . |
Html4.SPAN |
_span(Object... children)
Build element
<span> with children. |
Html4.SPAN |
_span(Runnable code)
Build element
<span> ; with it as the context parent, run `code`. |
Html4.STRONG |
_strong()
Build element
<strong> . |
Html4.STRONG |
_strong(Object... children)
Build element
<strong> with children. |
Html4.STRONG |
_strong(Runnable code)
Build element
<strong> ; with it as the context parent, run `code`. |
Html4.STYLE |
_style()
Build element
<style> . |
Html4.STYLE |
_style(Object... children)
Build element
<style> with children. |
Html4.STYLE |
_style(Runnable code)
Build element
<style> ; with it as the context parent, run `code`. |
Html4.SUB |
_sub()
Build element
<sub> . |
Html4.SUB |
_sub(Object... children)
Build element
<sub> with children. |
Html4.SUB |
_sub(Runnable code)
Build element
<sub> ; with it as the context parent, run `code`. |
Html4.SUP |
_sup()
Build element
<sup> . |
Html4.SUP |
_sup(Object... children)
Build element
<sup> with children. |
Html4.SUP |
_sup(Runnable code)
Build element
<sup> ; with it as the context parent, run `code`. |
Html4.TABLE |
_table()
Build element
<table> . |
Html4.TABLE |
_table(Object... children)
Build element
<table> with children. |
Html4.TABLE |
_table(Runnable code)
Build element
<table> ; with it as the context parent, run `code`. |
Html4.TBODY |
_tbody()
Build element
<tbody> . |
Html4.TBODY |
_tbody(Object... children)
Build element
<tbody> with children. |
Html4.TBODY |
_tbody(Runnable code)
Build element
<tbody> ; with it as the context parent, run `code`. |
Html4.TD |
_td()
Build element
<td> . |
Html4.TD |
_td(Object... children)
Build element
<td> with children. |
Html4.TD |
_td(Runnable code)
Build element
<td> ; with it as the context parent, run `code`. |
Html4.TEXTAREA |
_textarea()
Build element
<textarea> . |
Html4.TEXTAREA |
_textarea(Object... children)
Build element
<textarea> with children. |
Html4.TEXTAREA |
_textarea(Runnable code)
Build element
<textarea> ; with it as the context parent, run `code`. |
Html4.TFOOT |
_tfoot()
Build element
<tfoot> . |
Html4.TFOOT |
_tfoot(Object... children)
Build element
<tfoot> with children. |
Html4.TFOOT |
_tfoot(Runnable code)
Build element
<tfoot> ; with it as the context parent, run `code`. |
Html4.TH |
_th()
Build element
<th> . |
Html4.TH |
_th(Object... children)
Build element
<th> with children. |
Html4.TH |
_th(Runnable code)
Build element
<th> ; with it as the context parent, run `code`. |
Html4.THEAD |
_thead()
Build element
<thead> . |
Html4.THEAD |
_thead(Object... children)
Build element
<thead> with children. |
Html4.THEAD |
_thead(Runnable code)
Build element
<thead> ; with it as the context parent, run `code`. |
Html4.TITLE |
_title()
Build element
<title> . |
Html4.TITLE |
_title(Object... children)
Build element
<title> with children. |
Html4.TITLE |
_title(Runnable code)
Build element
<title> ; with it as the context parent, run `code`. |
Html4.TR |
_tr()
Build element
<tr> . |
Html4.TR |
_tr(Object... children)
Build element
<tr> with children. |
Html4.TR |
_tr(Runnable code)
Build element
<tr> ; with it as the context parent, run `code`. |
Html4.TT |
_tt()
Build element
<tt> . |
Html4.TT |
_tt(Object... children)
Build element
<tt> with children. |
Html4.TT |
_tt(Runnable code)
Build element
<tt> ; with it as the context parent, run `code`. |
Html4.UL |
_ul()
Build element
<ul> . |
Html4.UL |
_ul(Object... children)
Build element
<ul> with children. |
Html4.UL |
_ul(Runnable code)
Build element
<ul> ; with it as the context parent, run `code`. |
Html4.VAR |
_var()
Build element
<var> . |
Html4.VAR |
_var(Object... children)
Build element
<var> with children. |
Html4.VAR |
_var(Runnable code)
Build element
<var> ; with it as the context parent, run `code`. |
static final Html4 html4
Usually members of Html4 are accessed through inheritance. Note that Html4 is an interface with no abstract methods.
However, if inheritance is not suitable in some situations, application code can access Html4 methods through this instance, e.g.
import static bayou.html.Html4.*; html4._div();
static final String DOCTYPE
default Html4.A _a()
<a>
.default Html4.ABBR _abbr()
<abbr>
.default Html4.ABBR _abbr(Object... children)
<abbr>
with children.default Html4.ABBR _abbr(Runnable code)
<abbr>
; with it as the context parent, run `code`.default Html4.ACRONYM _acronym()
<acronym>
.default Html4.ACRONYM _acronym(Object... children)
<acronym>
with children.default Html4.ACRONYM _acronym(Runnable code)
<acronym>
; with it as the context parent, run `code`.default Html4.ADDRESS _address()
<address>
.default Html4.ADDRESS _address(Object... children)
<address>
with children.default Html4.ADDRESS _address(Runnable code)
<address>
; with it as the context parent, run `code`.default Html4.AREA _area()
<area>
.default Html4.B _b()
<b>
.default Html4.BASE _base()
<base>
.default Html4.BDO _bdo()
<bdo>
.default Html4.BDO _bdo(Runnable code)
<bdo>
; with it as the context parent, run `code`.default Html4.BIG _big()
<big>
.default Html4.BIG _big(Runnable code)
<big>
; with it as the context parent, run `code`.default Html4.BLOCKQUOTE _blockquote()
<blockquote>
.default Html4.BLOCKQUOTE _blockquote(Object... children)
<blockquote>
with children.default Html4.BLOCKQUOTE _blockquote(Runnable code)
<blockquote>
; with it as the context parent, run `code`.default Html4.BODY _body()
<body>
.default Html4.BODY _body(Object... children)
<body>
with children.default Html4.BODY _body(Runnable code)
<body>
; with it as the context parent, run `code`.default Html4.BR _br()
<br>
.default Html4.BUTTON _button()
<button>
.default Html4.BUTTON _button(Object... children)
<button>
with children.default Html4.BUTTON _button(Runnable code)
<button>
; with it as the context parent, run `code`.default Html4.CAPTION _caption()
<caption>
.default Html4.CAPTION _caption(Object... children)
<caption>
with children.default Html4.CAPTION _caption(Runnable code)
<caption>
; with it as the context parent, run `code`.default Html4.CITE _cite()
<cite>
.default Html4.CITE _cite(Object... children)
<cite>
with children.default Html4.CITE _cite(Runnable code)
<cite>
; with it as the context parent, run `code`.default Html4.CODE _code()
<code>
.default Html4.CODE _code(Object... children)
<code>
with children.default Html4.CODE _code(Runnable code)
<code>
; with it as the context parent, run `code`.default Html4.COL _col()
<col>
.default Html4.COLGROUP _colgroup()
<colgroup>
.default Html4.COLGROUP _colgroup(Object... children)
<colgroup>
with children.default Html4.COLGROUP _colgroup(Runnable code)
<colgroup>
; with it as the context parent, run `code`.default Html4.DD _dd()
<dd>
.default Html4.DD _dd(Runnable code)
<dd>
; with it as the context parent, run `code`.default Html4.DEL _del()
<del>
.default Html4.DEL _del(Runnable code)
<del>
; with it as the context parent, run `code`.default Html4.DFN _dfn()
<dfn>
.default Html4.DFN _dfn(Runnable code)
<dfn>
; with it as the context parent, run `code`.default Html4.DIV _div()
<div>
.default Html4.DIV _div(Runnable code)
<div>
; with it as the context parent, run `code`.default Html4.DL _dl()
<dl>
.default Html4.DL _dl(Runnable code)
<dl>
; with it as the context parent, run `code`.default Html4.DT _dt()
<dt>
.default Html4.DT _dt(Runnable code)
<dt>
; with it as the context parent, run `code`.default Html4.EM _em()
<em>
.default Html4.EM _em(Runnable code)
<em>
; with it as the context parent, run `code`.default Html4.FIELDSET _fieldset()
<fieldset>
.default Html4.FIELDSET _fieldset(Object... children)
<fieldset>
with children.default Html4.FIELDSET _fieldset(Runnable code)
<fieldset>
; with it as the context parent, run `code`.default Html4.FORM _form()
<form>
.default Html4.FORM _form(Object... children)
<form>
with children.default Html4.FORM _form(Runnable code)
<form>
; with it as the context parent, run `code`.default Html4.H1 _h1()
<h1>
.default Html4.H1 _h1(Runnable code)
<h1>
; with it as the context parent, run `code`.default Html4.H2 _h2()
<h2>
.default Html4.H2 _h2(Runnable code)
<h2>
; with it as the context parent, run `code`.default Html4.H3 _h3()
<h3>
.default Html4.H3 _h3(Runnable code)
<h3>
; with it as the context parent, run `code`.default Html4.H4 _h4()
<h4>
.default Html4.H4 _h4(Runnable code)
<h4>
; with it as the context parent, run `code`.default Html4.H5 _h5()
<h5>
.default Html4.H5 _h5(Runnable code)
<h5>
; with it as the context parent, run `code`.default Html4.H6 _h6()
<h6>
.default Html4.H6 _h6(Runnable code)
<h6>
; with it as the context parent, run `code`.default Html4.HEAD _head()
<head>
.default Html4.HEAD _head(Object... children)
<head>
with children.default Html4.HEAD _head(Runnable code)
<head>
; with it as the context parent, run `code`.default Html4.HR _hr()
<hr>
.default Html4.HTML _html()
<html>
.default Html4.HTML _html(Object... children)
<html>
with children.default Html4.HTML _html(Runnable code)
<html>
; with it as the context parent, run `code`.default Html4.I _i()
<i>
.default Html4.IFRAME _iframe()
<iframe>
.default Html4.IFRAME _iframe(Object... children)
<iframe>
with children.default Html4.IFRAME _iframe(Runnable code)
<iframe>
; with it as the context parent, run `code`.default Html4.IMG _img()
<img>
.default Html4.INPUT _input()
<input>
.default Html4.INS _ins()
<ins>
.default Html4.INS _ins(Runnable code)
<ins>
; with it as the context parent, run `code`.default Html4.KBD _kbd()
<kbd>
.default Html4.KBD _kbd(Runnable code)
<kbd>
; with it as the context parent, run `code`.default Html4.LABEL _label()
<label>
.default Html4.LABEL _label(Object... children)
<label>
with children.default Html4.LABEL _label(Runnable code)
<label>
; with it as the context parent, run `code`.default Html4.LEGEND _legend()
<legend>
.default Html4.LEGEND _legend(Object... children)
<legend>
with children.default Html4.LEGEND _legend(Runnable code)
<legend>
; with it as the context parent, run `code`.default Html4.LI _li()
<li>
.default Html4.LI _li(Runnable code)
<li>
; with it as the context parent, run `code`.default Html4.LINK _link()
<link>
.default Html4.MAP _map()
<map>
.default Html4.MAP _map(Runnable code)
<map>
; with it as the context parent, run `code`.default Html4.META _meta()
<meta>
.default Html4.NOSCRIPT _noscript()
<noscript>
.default Html4.NOSCRIPT _noscript(Object... children)
<noscript>
with children.default Html4.NOSCRIPT _noscript(Runnable code)
<noscript>
; with it as the context parent, run `code`.default Html4.OBJECT _object()
<object>
.default Html4.OBJECT _object(Object... children)
<object>
with children.default Html4.OBJECT _object(Runnable code)
<object>
; with it as the context parent, run `code`.default Html4.OL _ol()
<ol>
.default Html4.OL _ol(Runnable code)
<ol>
; with it as the context parent, run `code`.default Html4.OPTGROUP _optgroup()
<optgroup>
.default Html4.OPTGROUP _optgroup(Object... children)
<optgroup>
with children.default Html4.OPTGROUP _optgroup(Runnable code)
<optgroup>
; with it as the context parent, run `code`.default Html4.OPTION _option()
<option>
.default Html4.OPTION _option(Object... children)
<option>
with children.default Html4.OPTION _option(Runnable code)
<option>
; with it as the context parent, run `code`.default Html4.P _p()
<p>
.default Html4.PARAM _param()
<param>
.default Html4.PRE _pre()
<pre>
.default Html4.PRE _pre(Runnable code)
<pre>
; with it as the context parent, run `code`.default Html4.Q _q()
<q>
.default Html4.SAMP _samp()
<samp>
.default Html4.SAMP _samp(Object... children)
<samp>
with children.default Html4.SAMP _samp(Runnable code)
<samp>
; with it as the context parent, run `code`.default Html4.SCRIPT _script()
<script>
.default Html4.SCRIPT _script(Object... children)
<script>
with children.default Html4.SCRIPT _script(Runnable code)
<script>
; with it as the context parent, run `code`.default Html4.SELECT _select()
<select>
.default Html4.SELECT _select(Object... children)
<select>
with children.default Html4.SELECT _select(Runnable code)
<select>
; with it as the context parent, run `code`.default Html4.SMALL _small()
<small>
.default Html4.SMALL _small(Object... children)
<small>
with children.default Html4.SMALL _small(Runnable code)
<small>
; with it as the context parent, run `code`.default Html4.SPAN _span()
<span>
.default Html4.SPAN _span(Object... children)
<span>
with children.default Html4.SPAN _span(Runnable code)
<span>
; with it as the context parent, run `code`.default Html4.STRONG _strong()
<strong>
.default Html4.STRONG _strong(Object... children)
<strong>
with children.default Html4.STRONG _strong(Runnable code)
<strong>
; with it as the context parent, run `code`.default Html4.STYLE _style()
<style>
.default Html4.STYLE _style(Object... children)
<style>
with children.default Html4.STYLE _style(Runnable code)
<style>
; with it as the context parent, run `code`.default Html4.SUB _sub()
<sub>
.default Html4.SUB _sub(Runnable code)
<sub>
; with it as the context parent, run `code`.default Html4.SUP _sup()
<sup>
.default Html4.SUP _sup(Runnable code)
<sup>
; with it as the context parent, run `code`.default Html4.TABLE _table()
<table>
.default Html4.TABLE _table(Object... children)
<table>
with children.default Html4.TABLE _table(Runnable code)
<table>
; with it as the context parent, run `code`.default Html4.TBODY _tbody()
<tbody>
.default Html4.TBODY _tbody(Object... children)
<tbody>
with children.default Html4.TBODY _tbody(Runnable code)
<tbody>
; with it as the context parent, run `code`.default Html4.TD _td()
<td>
.default Html4.TD _td(Runnable code)
<td>
; with it as the context parent, run `code`.default Html4.TEXTAREA _textarea()
<textarea>
.default Html4.TEXTAREA _textarea(Object... children)
<textarea>
with children.default Html4.TEXTAREA _textarea(Runnable code)
<textarea>
; with it as the context parent, run `code`.default Html4.TFOOT _tfoot()
<tfoot>
.default Html4.TFOOT _tfoot(Object... children)
<tfoot>
with children.default Html4.TFOOT _tfoot(Runnable code)
<tfoot>
; with it as the context parent, run `code`.default Html4.TH _th()
<th>
.default Html4.TH _th(Runnable code)
<th>
; with it as the context parent, run `code`.default Html4.THEAD _thead()
<thead>
.default Html4.THEAD _thead(Object... children)
<thead>
with children.default Html4.THEAD _thead(Runnable code)
<thead>
; with it as the context parent, run `code`.default Html4.TITLE _title()
<title>
.default Html4.TITLE _title(Object... children)
<title>
with children.default Html4.TITLE _title(Runnable code)
<title>
; with it as the context parent, run `code`.default Html4.TR _tr()
<tr>
.default Html4.TR _tr(Runnable code)
<tr>
; with it as the context parent, run `code`.default Html4.TT _tt()
<tt>
.default Html4.TT _tt(Runnable code)
<tt>
; with it as the context parent, run `code`.default Html4.UL _ul()
<ul>
.default Html4.UL _ul(Runnable code)
<ul>
; with it as the context parent, run `code`.default Html4.VAR _var()
<var>
.