-
Css - Total Noobie Here
Ok, i want to set the background of my page to #FFAE00 - how to I use these CSS... I just don't get them. I know i will use something like
Code:
background-color:#FFAE00
but I don't know WHERE or how to use CSS's - I need this from the bottom up plz... soemthing to get me started. If you explain the main part of how it works and how to do It i can figure out the rest for fonts n stuff.
Thx guys
-
This is a PHP forum, not CSS.
You would do it like this:
Code:
<html>
<head>
<style type="text/css">
body {
background-color: #FFAE00;
}
</style>
</head>
If you want an explaination, search for a tutorial. But if you ask me, it's pretty self-explanitory.
-