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