Html cheatsheet -

base
html
create a html document
head
create the head section of page
title
create the title of the page
meta
generic metainformation
enclose the main section of page
text
h1
creates the largest headline
h2
second level of headings
h6
creates the smallest headline
b
bold text
i
italic text
tt
teletype or monospaced text
cite
a citation, usually italic
em
emphasizes a word (with italic or bold)
strong
emphasizes text logically, usually in boldface
link
create links and anchors
script
add "automatic" scripts to a page
style
add style sheet information to a page
link
link to an external style sheet
noscript
provide alternatives to scripts
formatting
pre
display text exactly as it appears in HTML document
p
create a new paragraph
br
create a line break
blockquote
set off block of text on page
dl
create a definition list
dt
mark a term to be defined in a list
dd
mark a definition in a list
ol
create an ordered list
li
create a list item
ul
create a bulleted list
hr
create horizontal rules
form
form
interactive form
select
option selector
option
selectable choice
textarea
multi-line text field
checkbox
<input type="checkbox" name="NAME" value="VALUE">
radio button
<input type="radio" name="NAME" value="VALUE">
input text
form control
submit button
<input type="submit" value="Submit" >
reset button
<input type="reset">
create buttons
inline
abbr
explain meaning of abbreviations
code
mark text as computer code
dfn
definition
kbd
text to be entered by the user
label
form field label text
span
generic container (inline)
sub
subscript
sup
superscript
table
caption
table caption
col
join columns in a table into a non-structural group
colgroup
join columns in a table into a structural column group
table
create a table
tbody
identify the body of the table
td
sets off each cell in a row
tfoot
identify the footer area of a table
th
sets off the table header
thead
identify the header area of a table
tr
sets off each row in a table
frames
window subdivision
subwindow
noframes
provide alternatives to frames
create a floating frames
media
image map area
img
embedded image
add multimedia
insert a background sound for page
events
onblur
when the visitor leaves an element that was previously in focus
onchange
when the visitor modifies the value or contents of the element
onclick
when the visitor clicks on the specified area
ondbclick
when the visitor double clicks the specified area
onfocus
when the visitor selects, clicks, or tabs to the specified element
onkeydown
when the visitor types something in the specified element
onkeypress
when the visitor types something in the specified element
onkeyup
when the visitor lets go of the key after typing in the specified element
onload
when the page is loaded in the browser
onmousedown
when the visitor presses the mouse button down over the element
onmousemove
when the visitor moves the mouse over the specified element after having pointed at it
onmouseout
when the visitor moves the mouse away from the specified element after having been over it
onmouseover
when the visitor points the mouse at the element
onmouseup
when the visitor lets the mouse button go after having clicked on the element
onreset
when the visitor clicks the form’s reset button
onselect
when the visitor selects one or more characters or words in the element
onsubmit
when the visitor clicks the form’s submit button
onunload
the browser loads a different page after the specified page had been loaded