For like, the whole page, not just a part of itHow to change font on whole page?
edit/select all then click on the font you wantHow to change font on whole page?
In firefox, Tools %26gt; Options %26gt; Content %26gt; Font %26amp; Colors.
In HTML, %26lt;font face=newfont size=newsize%26gt; body %26lt;/font%26gt;
If you're using a program such as Microsoft Word or Front Page then hold down CTRL and press A - this will select All. You can then change the font as you would do normally.
Can't you CTRL A, then go to your fonts and change it?
This is a very open-ended question.
If you mean changing the font on a word processor:
Select all the text and change the font name.
If you mean changing the font on a web page:
I only know how to do this in HTML.
You must insert the tag ';%26lt;FONT FACE='; + font name +';%26gt;'; to change the font.
I hope I was helpful.
PEACE IS COMMING SOON!
If you are using IE and not Firefox,
View
--Text Size
-----Largest/Larger/Medium
That is about the extent of it in IE
%26lt;style type=';text/css';%26gt;
body
{
color: white;
}
%26lt;/style%26gt;
But 'body' may need to be 'document'. I can't remember exactly, because I don't specify the page body's attributes through CSS very much. =)
Since no one seems to have mentioned this yet, you could be talking about designing a web page. If so, this is best accomplished by using the ';body'; selector in a CSS. Like this:
body
{
font-family : Arial, Helvetica, Verdana, sans-serif;
}
EDIT: Looks like someone beat me to it after all, although I prefer an external style sheet to inline styles.
with css, just add this in the %26lt;head%26gt; of your html:
%26lt;style type=';text/css';%26gt;
*{
font-family: arial;
font-size: 12pt;
font-color: black;
font-weight: bold; /* Just take this line out if you don't want bold text */
font-style: italic; /* Take this out if you don't want italic text */
text-decoration: underline; /* Take this line out if you don't want underlined text */
}
%26lt;/style%26gt;
If this doesn't work, or you need more code, just email me.
Subscribe to:
Post Comments
(Atom)
No comments:
Post a Comment