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