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