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