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