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