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