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