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