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