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