answersLogoWhite

0


Best Answer

For your color you will just put in this code before your writing that you want a certain color.

Color Code- <"font color= "pink">

To end Color Code-

You can use any color you can think of.

For your sizes use- ==

User Avatar

Wiki User

14y ago
This answer is:
User Avatar
More answers
User Avatar

Wiki User

13y ago

the font tag has a attribute called "style" that can be used to change the style of the font. another way of changing font is to use a css document.

style attribute example:

<font style="font-size:20px">HELLO</font>

css document example:

<head>

<style type="text/css">

font

{

font-family:"Times New Roman";

font-size:20px;

}

</style>

</head>

<body>

<font>HELLO</font>

</body>

Hope this helps (:

This answer is:
User Avatar

User Avatar

Wiki User

13y ago

To change the color of the text, simply put before the text, and then after the text. Make sure you put the hexadecimal code of your desired color into the tag (eg. #FFFFFF for white, #FF0000 for red, etc).

Changing the font is similar. Use before the text and after the text. Again, make sure to change "WHATEVER FONT YOU WANT" to the desired font (eg. "Verdana").

This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: How do you change font text color sizes and style?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

What is it called in excel when you change the font style to bold increase the font size and change the font color?

This is referred to as "font formatting."


Can you change the color of text using WordPad?

You cannot change the color of the font on windows notepad but if you click Format then you click Font... you can change the Font Font Style and the Size. If you really want to change the color try Windows WordPad or Microsoft-Word.


Changing the font type changing the font style to bold increasing the font size and changing the font color is called?

Your question is confusing. If you need to change the style of the text, you need to use style/CSS.


How do you change the font size on ebuddy?

You can change the color and style, but I can't find a way to change the size.


What option allows you to change the font color font type and heading styles for a cell's content?

The &lt;style&gt; tag can be used for changing font color and type. It can be used internally or in in-line too.


How can you change the font on HTML?

font size = &lt;span style="font-size: ??pt;"&gt;.....&lt;/span&gt;-put number size where ? appear font colour = &lt;p style="color: ????;"&gt;....&lt;/p&gt;-put name/code of colour where ? appear


Can you use the font element for text properties in css?

Yes, you can style fonts using CSS. Identify the HTML element that you want to style, for example &lt;p&gt;, and then use the { font-family: your_font; } to change the font family (such as arial, times new roman etc), { font-size: ?px; } to size the font. To color the font just use {color: ?;} For bold use {font-weight: bold;} For italics use {font-style: italic;}


Can you change the font STYLE on Google Chrome Not the font size..?

You cannot change the font-style of Chrome inbuilt. However there are extensions of Chrome which can do that.


How do you change the font color when creating a link?

Insert between the &lt;head&gt; and &lt;/head&gt; section on your page &lt;style type="text/css"&gt; a { color: #FF0000; } &lt;/style&gt; This example will change the link colour to red


What style attribute will change the size of the font of a tag?

style="font-size:10px"


What do you mean by formating text?

Formating includes- 1. Font. 2. Font Sizes. 3. Underline Style. 4. Add Effect. 5. Change Case. 6. Change characters spacing and so and so.


Can you set background color using font tag?

&lt;font style="background-color: red;"&gt;this text will have a red background&lt;/font&gt;