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