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