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