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