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