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