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