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