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