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