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