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