Here's my problem :)
I'm working on some stuff for our website, that is about 900 pages in Word, and having to code it in HTML. To make it faster for myself, I've created two text styles <command> and <order>
Here's my stylesheet:
command {
color: c30000;
font-style: italic;
}
order {
color: c30000;
font-style: bold;
}
Here's my html:
<li>Facings to the right or left will be executed in one <i>time</i>, or pause.
The instructor will
command:<br><br>
1. <command>Squad</command>. 2. <command>Right (or left)</command><order> -
FACE</order>.</li><br><br>
Firefox is interpreting all of this correctly. IE is not showing the italics, OR the colors, OR the bolding.
Can someone please assist?
I've tried changing my CSS to:
command {
color: #c30000;
font-style: italic;
}
order {
color: #c30000;
font-style: bold;
}
This still does not work. The page in question is at http://www.18thtexasinfantry.org/training/train_V_3_B.html if anyone wants to see the page in question.
Thanks in advance!