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