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