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