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