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