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