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