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