Advanced Styling The Text In Your Web Pages

For those who are competent in HTML, here are some hints and tips on how to add extra color and style to your website pages. 

Take the examples, replace the font, colors and text with the wording that you wish, and then insert it into the source code. 

We recommend web safe fonts and colors to make sure that optimal results are received. 

We will update this page as new ideas and requests that are possible come through. So we recommend logging back into this page from time to time to check for any updates. 


Change the color, size and font of the text of a whole paragraph

<p style="font-family: 'Georgia'color: #FF0000; font-weight:bold;font-size:8pt;">Results Applied to a paragraph</p>

This code would result in the following display:

Results Applied to a paragraph


Change the color of bullets and their text

Example:

<ul style="color:#FF0000;">
<li>Bullet 1 Text</li>
<li>Bullet 2 Text</li>
</ul>

  • Bullet Text 1
  • Bullet Text 2