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