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