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