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