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