
(10-13-2015, 10:18 AM)Coatleque Wrote: This site may help: http://www.w3schools.com/css/I could kiss you......
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.
Thanks!