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