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