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