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