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