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