/* Make sure you've got a page with well-formed standards based HTML 4.01, link it to this style sheet and you should see the result straight away. *//* The <html> element is just that, an element. So there's no reason why you can't give it its own style then make it appear around the <body> using a margin - that's all we do here. You might even like to add your own background image properties to this element to get an even more dynamic effect. */html {background-color: #4f230a;border: 10px #3f1604 solid;}body {background-color: #daab5d;margin: 10px;border: 10px #8b571d solid;font-family: Verdana, Helvetica, Arial, sans-serif;	font-size: .8em;}/* The following gives a special effect for <h1> elements which works best if there is only one of them on at the top of each page - so they are a sort of title. */h1 {margin: 0px;background-color: #8b571d;color: #3f1604;padding-bottom: 5px;font-size: 2em;font-weight: normal;font-style: italic;text-align: right;letter-spacing: 4px;border-top: 1px #daab5d dashed;}h2 {margin: 0px;text-decoration: none;font-style: normal;font-weight: bold;font-size: 1.6em;background-color: #8b571d;color: #daab5d;border-top: 1px #daab5d dashed;padding-top: 3px;padding-bottom: 3px;}h3 {font-size: 1.2em;padding-left: 2.5%;border-bottom: 8px #8b571d double;color: #4f230a;}h4 {font-size: 1em;font-weight: bold;color: #4f230a;text-decoration: none;font-style: normal;border-bottom: 4px #8b571d solid;padding-left: 5%;}/* The following four selectors allow you to select links when they are in the four different states: link - before they have been visited, visited - after it has been visited, hover - when the mouse is over the link, active - when the user clicks the link. */a:link {text-decoration: none;background-color: #ffd493;color: black;}a:visited {text-decoration: none;background-color: #ffd493;color: black;}a:hover {text-decoration: none;background-color: #8b571d;color: #ffd493;}a:active {text-decoration: none;background-color: #4f230a;color: #ffd493;}p {margin-left: 5%;margin-right: 5%;}blockquote {margin-left: 8%;margin-right: 8%;border-left: 30px #8b571d double;border-right: 30px #8b571d double;text-align: center;color: #4f230a;}/* This section of the style sheet has just a few selectors and properties to help you find your way around adding style to regular, standards-based HTML 4.01 tables (ie, a table to be used for presenting tabular information). *//* The following selector selects the table as a whole and gives it a background color and a border. The last couple of properties might be unfamiliar to you. border-collapse allows you to specify that adjacent borders should collapse onto one another. border-spacing allows you to specify a gap between the borders of cells in a table, or in this case that there should be no gap. You'll find these properties in Style Master on the Display Type Editor. */table {border: 2px #3f1604 solid;display: table;border-collapse: collapse;border-spacing: 0px;background-color: #8b571d;color: #daab5d;margin-left: 5%;margin-right: 5%;width: auto;}/* Using the <th> element for cells in the top row of an HTML table means that it is easy to apply a different style to this row and make it stand out from the rest of the table. */th {text-align: left;background-color: #4f230a;color: #daab5d;}td, th {border: 2px #3f1604 solid;padding: 5px;}
