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