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