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