Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Westi on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

HTML Header and Footer

Status
Not open for further replies.

hevychevy1996

Programmer
Jan 7, 2005
24
US
Is there a coding involved to have a header and footer for my html document? If so, can you please share?

thanks in advance
 

Do you mean when printed, or on the screen, or both?

How would you like it to look? Left aligned? Right aligned? Centre Aligned? What size, style? Text? Images?

As you can see, you've given absolutely nothing to go on.

Suggest you tell us some better specs.

Dan


The answers you get are only as good as the information you give!

 
well if it is on the screen then it can be printed that way. so apparently both. center aligned, size 12 font, silver color,no images

just simply:

please contact us at : 800-546-8463 ext.589

is that good?
 
Put this in your styles:

Code:
<style type="text/css">
#header {
	margin: 0 auto;
	text-align: center;
	font-size: 12pt;
	color: silver;
}
</style>

Then add this to the top of your page:

Code:
<div id="header">please contact us at : 800-546-8463 ext.589</div>

--James
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top