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