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