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