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