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