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