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