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