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