Eddy
8
You could do it with something like the code below.
For more information have a look at the W3schools website.
HTML:
<div class="container">
yourtexthere <select>
<option class="courier">courier</option>
<option>aa</option>
<option style="font-family:impact;" selected="selected">bb</option>
</select>
</div>
CSS:
.container
{
font-size:30px;
font-family:Lucida Handwriting;
}
select
{
font-family:inherit;
font-size:inherit;
}
option.courier
{
font-family:courier;
}