What Is The Html Code To Change The Footer Fonts Etc?
Friday, December 11th, 2009 at
11:20 am
I have the code but I want to know how to make it appear in the footer. Like for the link should I use or something like that?
Tagged with: Change • Code. • Fonts • Footer • HTML
Filed under:
HTML
Like this post? Subscribe to my RSS feed and get loads more!
It depends how you want to change the fonts.
Hopefully, you’re using CSS, in which case you just have to put
. You can then style that using
#footer {
font-family: Arial;
font-size: 21pt;
}
Or, you could use it using the style attribute:
Or, if you’re using a tag (don’t! it’s deprecated) you can do this:
My footer text here
And for the link… place it like this
Be aware that
The footer might be in a
or as
Some designers can use any text instead of “footer” say “chini”
Provide the link to the site, for us to help…
yes