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