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