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