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