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