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