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