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