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