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