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