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