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