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