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