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