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