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