if you want to cut back on the code in your html document, you could put a lot of that in an external file like this
index.html
HTML Code:
<!--[if IE]>
<link rel="stylesheet" href="ie-only.css" />
<![endif]-->
<link rel="stylesheet" href="main.css" />
ie-only.css
Code:
@font-face {
font-family: Bleeding Cowboys;
font-style: normal;
font-weight: normal;
src: url('BLEEDIN0.eot') !important;
}
main.css
Code:
@font-face {
font-family: Bleeding Cowboys;
font-style: normal;
font-weight: normal;
src: url('Bleeding_Cowboys.ttf');
}