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