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