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