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