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