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