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