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