CSS styles
HTML source
CSS
   
<html>
<head>
<link rel="stylesheet" type="text/css" href="styles.css">
</head>
<body>

<span class="headtext">A Red Header</span>

<p class="text">
This paragraph has a black arial font, 14 pt.
The background color of this page is gray,
it has been changed with CSS and this is a no-underlined <a href="page2.htm">link</a>
</p>
</body>
</html>
body {
   background-color: #EEEEEE;
   background-image: url();
   margin-left: 25px;
   font-family: Arial;
   }

 a {text-decoration: none;}

.headtext {
   font-size: large;
   font-weight: normal;
   color: #FF0000;
   }

.text {
   font-size: 14px;
   font-style: normal;
   font-weight: normal;
   color: #000000;
   }