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