@font-face (CSS3)

css
<style type="text/css">
@font-face {
	font-family: 'Tungsten';
	src: url('tungsten.ttf');
}
.font {
	font-family: Tungsten;
	font-size: 11px;
}
</style>

<!--HTML-->
<span class="font">Lorem ipsum dolor sit amet, consectetur adipiscing elit.</span>

Discuss the Code