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