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