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