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