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