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