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