Put a div tag around your text on that page like <div class="text-page1"> YOUR TEXT </div> Code (markup): and this goes into your css file .text-page1 { font-size: 12px; } Code (markup):
If it's just one page, you may not want to put that burden on your CSS file. I would just do it inline for the div like <div style="font-size:0.8em;">your smaller content</div>
You can also use the <small></small> HTML tags. Try wrapping these round some of your content that you would like to see smaller.
There are to change text size on just one page. 1. <span style="font-size: 11px;">text here</span> 2. Make class in css .smalltxt { font-size: 11px; } and put into <span class="smalltxt">text here</span> Workforce Management