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