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