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