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