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