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