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