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