Outcome
The background would be Black with verdana as the font family.You can change the 'body' at the start with whatever you want as long as you make sure you class it right.
for example..
background-color:#000000;
font-family:Verdana;
}
<div class="this"> Woo </div>
.that {
background-color:#ffffff;
font-family:Arial;
}
<p class="that"> Woohoo </p>


