WEB DEVELOPERS HELP PLEASE (HTML)?

Matt

New member
I'm currently at the very first stages of learning html to create websites. I've kinda got the basic layout sorted, however I'm stuck with one thing. I'm having trouble giving my site back ground color and defining a color for the text and the headings. I also don't know where exactly i place the coding for this on the layout. For ex. do i place the coding in the "Head" section, or in the "Body" section? Any help will be much appreciated! Thanks! =)
 
Do not learn HTML tables. HTML is on its way out as a web design tool. The current 'in thing' in web design is CSS. You are at the perfect time to learn CSS since you are not yet used to html. Look into the program Adobe Dreamweaver, research div tags, etc, and you'll see what I mean!
 
<html>
<head>
<title>xxxxx</title>
{meta tags for SEO}
</head>
<body style="background-color=xxxxx">
{content}
</body>
</html>

bgcolor is depracated.
 
Back
Top