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