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