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