Use on the webTotal Use [ 6650 ] times
1Add to the head section of web page.
<link href="https://db.onlinewebfonts.com/c/98b981dba832c4751b5dff2a8550931e?family=Timez+Trial+Readable+Bk+Ita" rel="stylesheet">
orUsing @import CSS directive, put the following line in add to your css file.(http | https)
@import url(https://db.onlinewebfonts.com/c/98b981dba832c4751b5dff2a8550931e?family=Timez+Trial+Readable+Bk+Ita);
orUse font-face declaration Fonts.(http | https)
@font-face {
font-family: "Timez Trial Readable Bk Ita";
src: url("https://db.onlinewebfonts.com/t/98b981dba832c4751b5dff2a8550931e.eot");
src: url("https://db.onlinewebfonts.com/t/98b981dba832c4751b5dff2a8550931e.eot?#iefix")format("embedded-opentype"),
url("https://db.onlinewebfonts.com/t/98b981dba832c4751b5dff2a8550931e.woff2")format("woff2"),
url("https://db.onlinewebfonts.com/t/98b981dba832c4751b5dff2a8550931e.woff")format("woff"),
url("https://db.onlinewebfonts.com/t/98b981dba832c4751b5dff2a8550931e.ttf")format("truetype"),
url("https://db.onlinewebfonts.com/t/98b981dba832c4751b5dff2a8550931e.svg#Timez Trial Readable Bk Ita")format("svg");
}
2CSS rules to specify fonts
font-family: "Timez Trial Readable Bk Ita";