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