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