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