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