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