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