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