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