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