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