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