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