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