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