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