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