Is there a way to use CSS to create a "footer" for a web page? I want to print the output from the bold red lines below at the bottom of my web page.
The other problem involves the page's background image. Is there a way to make the background image expand & contract depending on how the user resizes the browser window? If so, I'd really appreciate it if someone would be willing to share that with me.
Webpage:
<HEAD>
<TITLE>Page Title</TITLE>
</HEAD>
<html><body class=body>
<hr WIDTH="100%" >
<center>
<font class=font>
Last updated Saturday, August 23, 2008 - 12:52 AM<br>
<b><i>my test footer</i></b> © 2008<br>
<A class=menu2 href=" Webmaster</A>
</font>
</center>
<hr WIDTH="100%" >
</body></html>
Style sheet:
body {
background-image: url(../images/Ontario.png);
background-position: center center;
background-repeat: no-repeat;
}
font {
font-size: x-small;
color: yellow;
font-family: arial;
hr {
color: yellow;
height: 1px;
}
PETERV
Syracuse, NY &
Boston, MA
The other problem involves the page's background image. Is there a way to make the background image expand & contract depending on how the user resizes the browser window? If so, I'd really appreciate it if someone would be willing to share that with me.
Webpage:
<HEAD>
<TITLE>Page Title</TITLE>
</HEAD>
<html><body class=body>
<hr WIDTH="100%" >
<center>
<font class=font>
Last updated Saturday, August 23, 2008 - 12:52 AM<br>
<b><i>my test footer</i></b> © 2008<br>
<A class=menu2 href=" Webmaster</A>
</font>
</center>
<hr WIDTH="100%" >
</body></html>
Style sheet:
body {
background-image: url(../images/Ontario.png);
background-position: center center;
background-repeat: no-repeat;
}
font {
font-size: x-small;
color: yellow;
font-family: arial;
hr {
color: yellow;
height: 1px;
}
PETERV
Syracuse, NY &
Boston, MA