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