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