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