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