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