Styling text in CSS
Sunday, September 16th, 2007 | Programming, Tech
You can easily add CSS styles to your text. All you need to do is add a <p> style.
p {color: #000099; font-family: Arial, Verdana, Geneva, Helvetica, sans-serif
}
Now whenever you have text inside the paragragh tag, it will use the above style. You can also add special headings.
p.h {color: #CC0000; font-size: large; font-family: Arial, Verdana, Geneva, Helvetica, sans-serif
}
To use this in your text just add the code:
<p class="h">Some Headline</p>
You need to use CSS Styles for your texr as the W3C are cutting out the <font> tag from XHTML 1.0 Strict upwards. Although you can still use it in XHTML 1.0 Transitional, we think this will not be the case in later versions.
You can also use CSS to change the font of other tags such as your links. These include rollover, hit and visited pages. Take a look at this code that can be copied and pasted staight into your HTML pages.
<Style>
<!-- A {text-decoration: none}
A:hover {text-decoration: underline; color: #0DC450} -->
</Style>
This produces the blue to green underlined rollovers on this page.
You can easily add CSS styles to your text. All you need to do is add a <p> style.
p {color: #000099; font-family: Arial, Verdana, Geneva, Helvetica, sans-serif }
Now whenever you have text inside the paragragh tag, it will use the above style. You can also add special headings.
p.h {color: #CC0000; font-size: large; font-family: Arial, Verdana, Geneva, Helvetica, sans-serif }
To use this in your text just add the code:
<p class="h">Some Headline</p>
You need to use CSS Styles for your texr as the W3C are cutting out the <font> tag from XHTML 1.0 Strict upwards. Although you can still use it in XHTML 1.0 Transitional, we think this will not be the case in later versions.
You can also use CSS to change the font of other tags such as your links. These include rollover, hit and visited pages. Take a look at this code that can be copied and pasted staight into your HTML pages.
<Style> <!-- A {text-decoration: none} A:hover {text-decoration: underline; color: #0DC450} --> </Style>
This produces the blue to green underlined rollovers on this page.