I'm am trying to make sure that my webpage comes across conrrectly now that everything is stored on our schools servers, and everything checked out fine yesterday when I was using IE8. Now that I'm here, using IE7, the font face won't come across. These are stored in the server file with the address:
http://florence.ccs.uconn.edu/~iskm220st03/FinalProject/HARD_ROCK.eot
and
http://florence.ccs.uconn.edu/~iskm220st03/FinalProject/inked.eot
this is the code Iam using in my external CSS:
@font-face {
font-family: "HARD_ROCK";
src: url(HARD_ROCK.eot);
}
.rock {
font-family: "HARD_ROCK";
font-size: 80px;
text-align: center;
}
@font-face {
font-family: "Inked";
src: url(inked.eot);
}
.ink {
font-family: "Inked";
font-size: 30px;
text-align: center;
color: black;
}
and respectively, my HTML code:
<p class="rock"> All About HTML WYSIWYG</p>
and
<address class="ink"> ....</address>
Any Ideas about what needs to change?