Mar 15, 2005 #1 hevychevy1996 Programmer Joined Jan 7, 2005 Messages 24 Location 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
Is there a coding involved to have a header and footer for my html document? If so, can you please share? thanks in advance
Mar 15, 2005 #2 BillyRayPreachersSon Programmer Joined Dec 8, 2003 Messages 17,047 Location GB 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! Upvote 0 Downvote
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!
Mar 15, 2005 Thread starter #3 hevychevy1996 Programmer Joined Jan 7, 2005 Messages 24 Location US 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? Upvote 0 Downvote
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?
Mar 15, 2005 #4 JamesLean Programmer Joined Dec 13, 2002 Messages 3,059 Location GB 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 Upvote 0 Downvote
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