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