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