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