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