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