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