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