Resources Menu


Quick Reference Sheets for Webmasters

Quick Reference sheets are packed full of useful information for all webmasters.

HTML Reference Sheet

HTML Tag List


<button>
This sets a push button. All content within the button tag appears on the button. This content can include text or images.

Attributes
disabled
Value(s) : disabled
This disables the button from being clickable.
name
Value(s) : button name
This sets a unique name for the button which will allow you to parse information from the button or use it in dynamic scripting such as javascript.
type
Value(s) : button | reset | submit
This defines the type of button to use. Reset and submit types are strictly for the use of a form whereas a button type can be used for multiple purposes outside of a form.
example:
<button>Click ME!</button>