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