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