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