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