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