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