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