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