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