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