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