This site may help: http://www.w3schools.com/css/
What you're asking for is handled with style tags on HTML elements. If you want to change the entire style of your page, use a <div> element to wrap everything.
That is an over simplification but shows the basic gist.
What you're asking for is handled with style tags on HTML elements. If you want to change the entire style of your page, use a <div> element to wrap everything.
Code: (Select All)
<div style="background: black; color: white;">
Page content here
</div>
That is an over simplification but shows the basic gist.