HTML/CSS
CSS Font Styles Guide
With the 2007 WorldVacations consumer redesign, all the CSS font names were changed on all sites.
When entering content in CMS, please use the new CSS styles.
STYLE |
NEW CSS |
CODE EXAMPLE |
OLD CSS |
regular text |
|
<p> |
|
large print |
font_largeprint |
<p class="font_largeprint"> |
v2 |
small print |
font_fineprint |
<p class="font_fineprint"> |
fineprint |
bold |
font_bold |
<p class="font_bold"> |
bold |
large bold/subheader |
font_subhead |
<p class="font_subhead"> |
v2bold |
largest font/header |
font_head |
<p class="font_head"> |
v3bold |
red |
font_red |
<p class="font_red"> |
red |
red subheader |
font_subheadred |
<p class="font_subheadred"> |
v2boldred |
red header |
font_headred |
<p class="font_headred"> |
v3boldred |
green |
font_green |
<p class="font_green"> |
|
white |
font_white |
<p class="font_white"> |
white |
Classes can also be combined in the HTML tag for additional styles. Separate styles with a space. For example:
large bold green is written <p class="font_head font_green">large bold green</p>
|
|