This site will work and look better in a browser that supports web standards, but it is accessible to any browser or Internet device.
When I start a new project, these are the core Cascading Style Sheet (CSS) styles that I like to have lead my linked document.
/* Begin Core Styles */
html, body {
background-color: #FFFFFF;
color: #000000;
margin: 0;
padding: 0;
}
body, div, span, table, tr, td, ol, ul, li, dl, dt, dd, p, blockquote, h1, h2, h3, h4, h5, h6 {
font-family: Arial, Helvetica, Verdana, Geneva, sans-serif;
}
h1, h2, h3, h4, h5, h6, p, ul, ol, dir, menu, div, dt, dd, address, blockquote, pre, br, hr {
display: block;
}
b, strong, i, em, cite, var, tt, code, kbd, samp, img, span {
display: inline;
}
li {
display: list-item;
}
b, strong {
font-weight: bolder;
}
i, cite, em, var {
font-style: italic;
}
pre, tt, code, kbd, samp {
font-family: monospace;
}
pre {
white-space: pre;
}
ul, dir {
list-style: disc;
}
ol {
list-style: decimal;
}
/* End Core Styles */
/* Begin Header Styles */
h1, h2, h3, h4, h5, h6 {
margin: 0;
padding: 0;
}
h1 {
font-size: 130%;
}
h2 {
font-size: 120%;
}
h3 {
font-size: 110%;
}
h4 {
font-size: 100%;
}
h5 {
font-size: 95%;
}
h6 {
font-size: 90%;
}
/* End Header Styles */
/* Begin Anchor/Link Styles */
a, a:link, a:visited {
text-decoration: none;
}
a:hover, a:active {
text-decoration: underline;
}
/* End Anchor/Link Styles */