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