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