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