css web background frontpage 2003

  • Thread starter Thread starter Mark
  • Start date Start date
M

Mark

I'm trying to create a web background that I can use through my web site
using css. I can get the color to work but I'm not sure about the proper
code to use if I want every page to use a certain background image. Any
help would be appreciated.
 
You can either put the css Steve Easton provided on every page in the <head>
section between <style type="text/css"> and </style> or you can put all css
code in a file, name it something like styles.css and then link to it on
every page with <link href="styles.css" rel="stylesheet" type="text/css"> in
the <head> section.
 
okay. Thanks guys for your help

Dan L said:
You can either put the css Steve Easton provided on every page in the
<head>
section between <style type="text/css"> and </style> or you can put all
css
code in a file, name it something like styles.css and then link to it on
every page with <link href="styles.css" rel="stylesheet" type="text/css">
in
the <head> section.
 
Back
Top