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