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