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