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