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