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