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