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