Font Styles
<b>your text</b> to create bold font
Result: your text
<i> your text </i> to make italic font
Result: your text
Combine the two (in either order) to make bold italic: <b><i> your text </b></i>
Result: your text
Here are some more examples of ways to emphasize text (some may not be acceptable to Yahoo): W3Schools/formatting
Colors
There are 16 named colors that Yahoo accepts (e.g., red, green, blue, etc.); the others will need an RGB statement in the code, so it's easier to stick to the basic ones. Here is the list of basic colors: <http://www.utexas.edu/learn/html/colors.html>
Use <font color="red"> your text </font> to make, for example, red-colored font":
Result: your text
Even simpler, Yahoo will accept <text="green"> your text </text>
Result: your text
Again, you can combine font color with bold and/or italic. Just be sure to put the tag closing with a back slash: </>.
Here are a list of other color names, most of which will probably work in Yahoo at W3Schools/color_names.
Paragraph Spacing
Use <p> to start each new paragraph, and <p> or <br> to leave a space between paragraphs. (You don't need a closing tag with </p> or </br>, but some feel it is tidier.)
Hot Links for URLS
Use the following formula:
<a href="http://the exact URL of this page)">Name in the text</a>
Result: Name in the text
You must use http:// to begin the address, and don't forget the closing " mark after the address.
|
Comments (0)
You don't have permission to comment on this page.