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