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