A class attribute can be added to most html elements.
(div(
(class( 'p-data_s ))
(h2( 'Hello_s ))
))
An action attribute can be added to most html elements.
(form(
(action( 'http://site_s ))
))
A value attribute can be added to most html elements.
(input(
(value( 'http://site_s ))
))
A checked attribute can be added to most html elements.
(form(
(checked( () ))
))
A hidden attribute can be added to most html elements.
(form(
(hidden( () ))
))
A method attribute can be added to most html elements.
(form(
(method( 'get_s ))
))
A name attribute can be added to most html elements.
(div(
(name( 'data_s ))
(h2( 'Hello_s ))
))
An autocomplete attribute can be added to most html elements.
(input(
(type_( 'text_s ))
(autocomplete( 'default value_s ))
))
A required attribute can be added to most html elements.
(input(
(type_( 'text_s ))
(required( 'yes_s ))
))
A placeholder attribute can be added to most html elements.
(input(
(type_( 'text_s ))
(placeholder( 'temporary value_s ))
))
A type attribute can be added to most html elements.
(input(
(type_( 'text_s ))
))
A src attribute can be added to most html elements.
(input(
(src( 'http://site_s ))
))
An id attribute can be added to most html elements.
(input(
(id( 'ident_s ))
))
A rel attribute can be added to most html elements.
(input(
(rel( 'ident_s ))
))
An href attribute can be added to most html elements.
(input(
(rel( 'http://site_s ))
))
text is a typesafe plaintext element.
(text( 'hello_s ))
html is the document root .
(html(
(text( 'hello_s ))
))
main is a semantic html element.
(main(
(text( 'hello_s ))
))
head is a semantic html element.
(head(
(title( 'The page title_s ))
))
title is a semantic html element.
(title(
(text( 'hello_s ))
))
body is where visual html elements go.
(body(
(text( 'hello_s ))
))
h1 is a semantic html element.
(h1(
(text( 'hello_s ))
))
h2 is a semantic html element.
(h2(
(text( 'hello_s ))
))
h3 is a semantic html element.
(h3(
(text( 'hello_s ))
))
h4 is a semantic html element.
(h4(
(text( 'hello_s ))
))
h5 is a semantic html element.
(h5(
(text( 'hello_s ))
))
h6 is a semantic html element.
(h6(
(text( 'hello_s ))
))
div is a semantic html element.
(div(
(text( 'hello_s ))
))
header is a semantic html element.
(header(
(text( 'hello_s ))
))
nav is a semantic html element.
(nav(
(text( 'hello_s ))
))
ul is a semantic html element.
(ul(
(text( 'hello_s ))
))
ol is a semantic html element.
(ol(
(text( 'hello_s ))
))
li is a semantic html element.
(li(
(text( 'hello_s ))
))
a is a semantic html element.
(a(
(text( 'hello_s ))
))
span is a semantic html element.
(span(
(text( 'hello_s ))
))
i is a semantic html element.
(i(
(text( 'hello_s ))
))
p is a semantic html element.
(p(
(text( 'hello_s ))
))
img is a semantic html element.
(img(
(text( 'hello_s ))
))
link is a semantic html element.
(link(
(text( 'hello_s ))
))
section is a semantic html element.
(section(
(text( 'hello_s ))
))
form is a semantic html element.
(form(
(text( 'hello_s ))
))
input is a semantic html element.
(input(
(text( 'hello_s ))
))
button is a semantic html element.
(button(
(text( 'hello_s ))
))
pre is a semantic html element.
(pre(
(text( 'hello_s ))
))
code is a semantic html element.
(code(
(text( 'hello_s ))
))
hr is a semantic html element.
(hr(
(class( 't_s ))
))