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