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