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