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