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