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