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