HTML structure elements
describe and create HTML code to implement page layout elements
nav element
describe and create HTML code to implement nav layout element
header element
footer element
describe and create HTML code to implement header and footer layout elements
section element
main element
describe and create HTML code to implement section and main elements
form element
describe and create HTML code to implement a from element
input element
text type, text-area type, name property, rows and columns properties
describe and create HTML code for input element within a form using text type and textarea type
number type
min property, max property
describe and create HTML code for input element within a form using number type.
radio type
value property, checked property
describe and create HTML code for input element within a form using radio type.
submit (button) type
describe and create HTML code for input element within a form using submit (button) type.
select input
option values
describe and create HTML code for select element within a form.
HTML validation
presence (required), range (min, max or range type), length (maxlength)
describe and create form data validation:
- length (maxlength)
- presence (required)
- range (min, max or range type?)
Javascript mouse events
onmouseover, onmouseout
describe Javascript code for mouse events: onmouseover, onmouseout and onclick.