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