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