Where does this tag go in an html page? In the <head> or <body> or other

  • Thread starter Thread starter Frimsah
  • Start date Start date
F

Frimsah

Guest
That goes in the <head> tag, but there's more.

It's CSS. You'll need to have something like

<style type="text/css">
<!--
body {
background-image : url('small-blue.gif');
background-repeat : repeat-y;
}
-->
</style>

inside of your <head> </head> tags.
 
That goes in the <head> tag, but there's more.

It's CSS. You'll need to have something like

<style type="text/css">
<!--
body {
background-image : url('small-blue.gif');
background-repeat : repeat-y;
}
-->
</style>

inside of your <head> </head> tags.
 
Back
Top