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