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