Use on the webTotal Use [ 6860 ] times
1Add to the head section of web page.
<link href="https://db.onlinewebfonts.com/c/b86e18394f9f039d12ea48d46e3c583d?family=Timez+Trial+Readable+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/b86e18394f9f039d12ea48d46e3c583d?family=Timez+Trial+Readable+Ita);
orUse font-face declaration Fonts.(http | https)
@font-face {
font-family: "Timez Trial Readable Ita";
src: url("https://db.onlinewebfonts.com/t/b86e18394f9f039d12ea48d46e3c583d.eot");
src: url("https://db.onlinewebfonts.com/t/b86e18394f9f039d12ea48d46e3c583d.eot?#iefix")format("embedded-opentype"),
url("https://db.onlinewebfonts.com/t/b86e18394f9f039d12ea48d46e3c583d.woff2")format("woff2"),
url("https://db.onlinewebfonts.com/t/b86e18394f9f039d12ea48d46e3c583d.woff")format("woff"),
url("https://db.onlinewebfonts.com/t/b86e18394f9f039d12ea48d46e3c583d.ttf")format("truetype"),
url("https://db.onlinewebfonts.com/t/b86e18394f9f039d12ea48d46e3c583d.svg#Timez Trial Readable Ita")format("svg");
}
2CSS rules to specify fonts
font-family: "Timez Trial Readable Ita";