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