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