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