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