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