/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

body {
  background-color: #009999;
  color: black;
 font-family: "Lucida Console", Monaco, monospace;
font-size: 15px;
letter-spacing: 2px;
word-spacing: 2px;
color: #000000;
font-weight: normal;
text-decoration: none;
font-style: normal;
font-variant: normal;
text-transform: none;

<div id="demobox">
This is a demo box to illustrate the code given in thesitewizard.com's tutorial on creating coloured boxes.
</div>
#demobox {
  color: black ;
  background-color: #cfc ;
  padding: 10px ;
  border: 1px solid green ;
}