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