Once you've created the .eot file, upload it somewhere and add this to your css:
CODE
<!-- begin code provided by createblog.com -->
@font-face {
font-family: "NameGoesHere";
src: url("http://fileurl.eot");
}
<!-- end code provided by createblog.com -->
For font-family, give your embedded font a name.
Then for every instance in your css that you give a font family, put in whatever name you used for the font-family in the code above.
ex:
CODE
<!-- begin code provided by createblog.com -->
@font-face {
font-family: "techy";
src: url("http://xquizit.cbstaff.com/fonts/techy.eot");
}
body, font, td {
font-family: "techy";
}
<!-- end code provided by createblog.com -->