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


<style>
This tag defines a style for your document. The style tag must go in the head section of your html document.

Attributes
type
Value(s) : text/css
Defines the Content type for the style.
media
Value(s) : all | aural | braille | handheld | print | projection | screen | tty | tv
This attribute details the type of media to set for your destination device.
example:
<head>
<style type="text/css">
/* Disable BODY padding and margin.
body { padding: 0; margin: 0; }
</style>
</head>