I\'m using the latest version of google chrome and it won\'t render font face at all.
I\'m running Debian Linux, and all other browsers , including Chromium , show
Try this
src:url('DejaWeb-Bold.ttf') format('truetype'),
Also if the fonts are available in other different format from where you got them then I suggest writing all the cross browser compatibly in the following manner
@font-face {
font-family: "Dejaweb";
src: url("DejaWeb-Bol.eot") format('embedded-opentype'), /* EDIT correction on this line */
url('DejaWeb-Bol.woff') format('woff'), /* Modern Browsers */
url('DejaWeb-Bol.ttf') format('truetype'), /* Safari, Android, iOS */
url('DejaWeb-Bol.svg#Dejaweb') format('svg'); /* Legacy iOS; correction on this line */
font-weight:bold;
font-style:normal;
}