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