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