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