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