Sets the language of the element's content.
Example:
Div().lang('es') // Spanish P().lang('en-US') // English (US)
@override Html lang(String value) { attr('lang', StringAttribute(value)); return this; }