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